2024-05-02 11:58:38 +04:00
|
|
|
|
namespace BeautySalonDBModels.Models
|
|
|
|
|
{
|
|
|
|
|
public class Master
|
|
|
|
|
{
|
2024-05-02 12:54:17 +04:00
|
|
|
|
public int MasterId { get; set; }
|
|
|
|
|
public int SpecialisationId { get; set; }
|
|
|
|
|
public string FIO { get; set; } = string.Empty;
|
2024-05-02 11:58:38 +04:00
|
|
|
|
}
|
|
|
|
|
}
|