14 lines
283 B
C#
14 lines
283 B
C#
namespace BeautySalonDBModels.Models
|
|
{
|
|
public class Specialisation
|
|
{
|
|
public int SpecialisationId { get; set; }
|
|
public string Name { get; set; } = string.Empty;
|
|
|
|
public override string ToString()
|
|
{
|
|
return Name;
|
|
}
|
|
}
|
|
}
|