using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace SchoolContracts.ViewModels { public class ReportCircleLessonViewModel { public DateTime? StartDate { get; set; } public List Lessons { get; set; } public int TotalCount { get; set; } } }