10 lines
213 B
C#
10 lines
213 B
C#
|
namespace BeautySalonDBModels.Models
|
|||
|
{
|
|||
|
public class Master
|
|||
|
{
|
|||
|
public int MasterId { get; }
|
|||
|
public int SpecialisationId { get; }
|
|||
|
public string FIO { get; } = string.Empty;
|
|||
|
}
|
|||
|
}
|