2024-07-23 21:32:13 +04:00
|
|
|
|
|
|
|
|
|
using System.ComponentModel;
|
|
|
|
|
|
|
|
|
|
namespace BeautySalonContracts.ViewModels
|
|
|
|
|
{
|
|
|
|
|
public class PurchaseViewModel
|
|
|
|
|
{
|
|
|
|
|
public int Id { get; set; }
|
|
|
|
|
[DisplayName("Дата покупки")]
|
|
|
|
|
public DateTime Date { get; set; }
|
|
|
|
|
[DisplayName("Сумма")]
|
2024-07-24 13:22:05 +04:00
|
|
|
|
public double Sum { get; set; }
|
2024-07-23 21:32:13 +04:00
|
|
|
|
}
|
|
|
|
|
}
|