SUBD_Labs/BeauySalonContracts/BindingModels/ServiceBindingModel.cs

12 lines
299 B
C#
Raw Normal View History

2023-05-13 13:37:59 +04:00
using BeautySalonDataModels.Models;
namespace BeautySalonContracts.BindingModels
{
public class ServiceBindingModel : IServiceModel
{
public int Id { get; set; }
public string ServiceName { get; set; } = string.Empty;
2023-05-13 23:36:15 +04:00
public double Cost { get; set; }
2023-05-13 13:37:59 +04:00
}
}