PIbd-22_Kamcharova_K.A_Reno.../RenovationWorkContracts/ViewModels/ReportOrdersViewModel.cs

19 lines
468 B
C#
Raw Normal View History

2024-05-19 13:23:06 +04:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace RenovationWorkContracts.ViewModels
{
public class ReportOrdersViewModel
{
public int Id { get; set; }
public DateTime DateCreate { get; set; }
public string RepairName { get; set; } = string.Empty;
public double Sum { get; set; }
public string Status { get; set; } = string.Empty;
}
}