9 lines
186 B
C#
9 lines
186 B
C#
|
namespace BeautySalonDBModels.Models
|
|||
|
{
|
|||
|
public class Specialisation
|
|||
|
{
|
|||
|
public int SpecialisationId { get; }
|
|||
|
public string Name { get; } = string.Empty;
|
|||
|
}
|
|||
|
}
|