root/trunk/Wierszowki/Wierszowki.Web/Models/AuthorCardViewData.cs @ 995

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 Wierszowki.Core.Linq;
6
7namespace Wierszowki.Models
8{
9    public class AuthorCardViewData
10    {
11        public string FullName { get; set; }
12        public DateTime Date { get; set; }
13        public Dictionary<string, List<MagazineItem>> MagazineItems { get; set; }
14        public decimal Price { get; set; }
15        public decimal Bonus { get; set; }
16        public decimal Total { get; set; }
17    }
18}
Notatka: Zobacz TracBrowser aby uzyskać więcej informacji.