10 lines
248 B
C#

namespace BeautySalonDataModels.Models
{
public interface IMasterModel : IId
{
string MasterFIO { get; }
string Specialization { get; }
public Dictionary<int, (IServiceModel, int)> MasterServices { get; }
}
}