using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.Mvc; using Wierszowki.Core.Linq; namespace Wierszowki.Models { public class ReportViewData { public DateTime ReportDate { get; set; } public EmploymentType Employment { get; set; } public List Authors { get; set; } public List Magazines { get; set; } public Dictionary> ReportData { get; set; } public SelectList EmploymentTypeList { get; set; } public SelectList UserList { get; set; } } }