2023-03-28 16:13:50 +04:00
|
|
|
|
using BeautySaloonDataModels;
|
|
|
|
|
using System.ComponentModel;
|
|
|
|
|
|
|
|
|
|
namespace BeautySaloonContracts.ViewModels
|
|
|
|
|
{
|
|
|
|
|
public class ServiceViewModel : IServiceModel
|
|
|
|
|
{
|
|
|
|
|
public int Id { get; set; }
|
|
|
|
|
[DisplayName("Услуга")]
|
|
|
|
|
public string Name { get; set; } = string.Empty;
|
|
|
|
|
[DisplayName("Цена")]
|
2023-03-29 20:00:53 +04:00
|
|
|
|
public decimal Price { get; set; }
|
2023-03-28 16:13:50 +04:00
|
|
|
|
}
|
|
|
|
|
}
|