17 lines
323 B
C#
Raw Normal View History

2023-04-03 17:26:05 +03:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace SchoolContracts.ViewModels
{
public class ReportCircleViewModel
{
public DateTime DateCreate { get; set; }
public string ClientName { get; set; }
public decimal Sum { get; set; }
}
}