18 lines
376 B
C#
18 lines
376 B
C#
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<string, int> Circles { get; set; }
|
|
|
|
}
|
|
}
|