11 lines
260 B
C#
11 lines
260 B
C#
namespace BeautySalonDBModels.Models
|
|
{
|
|
public class Service
|
|
{
|
|
public int ServiceId { get; }
|
|
public string ServiceName { get; } = string.Empty;
|
|
public double Price { get; }
|
|
public int SpecialisationId { get; }
|
|
}
|
|
}
|