PIAPS_CW/Contracts/ViewModels/ReportSupplyViewModel.cs

18 lines
443 B
C#
Raw Normal View History

2024-06-24 18:53:31 +04:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Contracts.ViewModels
{
public class ReportSupplyViewModel
{
public int Id { get; set; }
public DateTime Date { get; set; }
public string Name { get; set; } = string.Empty;
public double Price { get; set; }
public String Status { get; set; } = string.Empty;
}
}