using BeautySalonDataModels.Models; namespace BeautySalonContracts.BindingModels { public class ServiceBindingModel : IServiceModel { public int Id { get; set; } public string ServiceName { get; set; } = string.Empty; public double Cost { get; set; } } }