using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace SchoolContracts.ViewModels { /// /// Модель для получения одного занятия для отчета /// public class ReportLessonCirclesViewModel { /// /// Номер занятия /// public int LessonId { get; set; } /// /// Имя сотрудника /// public string EmployeeName{ get; set; } = string.Empty; /// /// Стоимость /// public int Sum { get; set; } } }