using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace SchoolContracts.ViewModels { public class ReportLessonCircleViewModel { public string Name { get; set; } public List Circles { get; set; } public int TotalCount { get; set; } } }