ISEbd-21_Tukaeva_A_A_School/School/SchoolContracts/ViewModels/ReportViewModel.cs

24 lines
595 B
C#
Raw Normal View History

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace SchoolContracts.ViewModels
{
public class ReportViewModel
{
[DisplayName("Имя кружка")]
int CircleNumber { get; set; }
[DisplayName("Дата кружка")]
DateTime Date { get; set; }
[DisplayName("Сумма")]
double Sum { get; set; }
[DisplayName("Кол-во занятий")]
int CircleCount { get; set; }
[DisplayName("Имя клиента")]
string ClientName { get; set; } = string.Empty;
}
}