using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace SchoolContracts.ViewModels { public class ReportCircleViewModel { public DateTime DateStart { get; set; } public string ClientName { get; set; } public double Sum { get; set; } public Dictionary Circles { get; set; } } }