root/trunk/Wierszowki/Wierszowki.Web/Models/UpdateViewData.cs @ 861

Wersja 842, 0.7 KB (wprowadzona przez alina, 17 years temu)

fix #207, #193, #205

Line 
1using System;
2using System.Collections.Generic;
3using System.Linq;
4using System.Web;
5using Wierszowki.Core.Linq;
6using System.Web.Mvc;
7
8namespace Wierszowki.Models
9{
10    public class UpdateViewData
11    {
12        public UpdateData up { get; set; }
13        public Magazine Magazine { get; set; }
14        public Issue Issue { get; set; }
15        public SelectList AuthorList { get; set; }
16        public SelectList MagazineList { get; set; }
17        public SelectList IssueList { get; set; }
18        public SelectList ItemTypeList { get; set; }
19        public int SmallerMagazineNumber { get; set; }
20        public Info Info { get; set; }
21        public int ErrorEdit { get; set; }
22    }
23}
Notatka: Zobacz TracBrowser aby uzyskać więcej informacji.