17 lines
323 B
C#
17 lines
323 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 DateCreate { get; set; }
|
|
public string ClientName { get; set; }
|
|
public decimal Sum { get; set; }
|
|
|
|
}
|
|
}
|