2024-12-27 09:47:44 +00:00
|
|
|
|
using System;
|
|
|
|
|
|
|
|
|
|
namespace Demka_2.Use;
|
2024-12-27 07:56:37 +00:00
|
|
|
|
public class Service
|
|
|
|
|
{
|
2024-12-27 09:47:44 +00:00
|
|
|
|
public Guid guid { get; set; }
|
2024-12-27 07:56:37 +00:00
|
|
|
|
public string Name { get; set; }
|
2024-12-27 11:47:18 +00:00
|
|
|
|
public string ImagePath { get; set; }
|
2024-12-27 07:56:37 +00:00
|
|
|
|
public decimal Price { get; set; }
|
|
|
|
|
public decimal Discount { get; set; }
|
|
|
|
|
public int Duration { get; set; }
|
|
|
|
|
public string Description { get; set; }
|
|
|
|
|
public decimal FinalPrice => Price * (1 - Discount / 100);
|
|
|
|
|
public bool CanDelete { get; set; } = true;
|
|
|
|
|
}
|
|
|
|
|
|