PIbd-22_Kaznacheeva.E.K._So.../SoftwareInstallation/SoftwareInstallationContracts/ViewModels/ReportOrdersViewModel.cs

18 lines
474 B
C#
Raw Normal View History

2024-04-10 08:56:56 +04:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace SoftwareInstallationContracts.ViewModels
{
public class ReportOrdersViewModel
{
public int Id { get; set; }
public DateTime DateCreate { get; set; }
2024-04-21 17:55:38 +04:00
public string PackageName { get; set; } = string.Empty;
2024-04-10 08:56:56 +04:00
public double Sum { get; set; }
public string Status { get; set; } = string.Empty;
}
}