using System; using System.Collections.Generic; using System.Linq; using System.Web; using Wierszowki.Core.Linq; namespace Wierszowki.Models { public class AuthorCardViewData { public string FullName { get; set; } public DateTime Date { get; set; } public Dictionary> MagazineItems { get; set; } public decimal Price { get; set; } public decimal Bonus { get; set; } public decimal Total { get; set; } } }