root/trunk/Wierszowki/Wierszowki.Web/Models/ReportViewData.cs @ 752

Wersja 752, 0.5 KB (wprowadzona przez marek, 17 years temu)

wiersz

Line 
1using System;
2using System.Collections.Generic;
3using System.Linq;
4using System.Web;
5using System.Web.Mvc;
6using Wierszowki.Core.Linq;
7
8namespace Wierszowki.Models
9{
10    public class ReportViewData
11    {
12        public DateTime ReportDate { get; set; }
13        public EmploymentType Employment { get; set; }
14        public List<Author> Authors { get; set; }
15        public List<Magazine> Magazines { get; set; }
16        public Dictionary<int, Dictionary<string, decimal>> ReportData { get; set; }
17    }
18}
Notatka: Zobacz TracBrowser aby uzyskać więcej informacji.