PIbd-23-Radaev-A.V.-GiftShop/GiftShop/GiftShopContracts/ViewModels/ReportOrdersViewModel.cs
Arkadiy Radaev 6d165aa782 res4
2024-04-07 10:17:23 +04:00

16 lines
346 B
C#

namespace GiftShopContracts.ViewModels
{
public class ReportOrdersViewModel
{
public int Id { get; set; }
public DateTime DateCreate { get; set; }
public string GiftName { get; set; } = string.Empty;
public double Sum { get; set; }
public string Status { get; set; } = string.Empty;
}
}