11 lines
280 B
C#

namespace BeautySalonDBModels.Models
{
public class Service
{
public int ServiceId { get; set; }
public string ServiceName { get; set; } = string.Empty;
public double Price { get; set; }
public int SpecialisationId { get; set; }
}
}