10 lines
248 B
C#
Raw Normal View History

2023-05-13 13:37:59 +04:00
namespace BeautySalonDataModels.Models
{
public interface IMasterModel : IId
{
string MasterFIO { get; }
string Specialization { get; }
public Dictionary<int, (IServiceModel, int)> MasterServices { get; }
}
}