﻿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<Author> Authors { get; set; }
        public List<Magazine> Magazines { get; set; }
        public Dictionary<int, Dictionary<string, decimal>> ReportData { get; set; }
    }
}