using System; using System.Collections.Generic; using System.ComponentModel; using System.Linq; using System.Text; using System.Threading.Tasks; namespace SchoolContracts.ViewModels { public class LessonViewModel { public int Id { get; set; } [DisplayName("Название занятия")] public string LessonName { get; set; } [DisplayName("стоимость занятия")] public decimal LessonCost { get; set; } public int? EmployeeId { get; set; } public string EmployeeName { get; set; } public Dictionary CircleLessons { get; set; } } }