11 lines
260 B
C#
Raw Normal View History

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