16 lines
375 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; }
public override string ToString()
{
return ServiceName;
}
}
}