10 lines
246 B
C#
10 lines
246 B
C#
namespace BeautySalonDataModels.Models
|
|
{
|
|
public interface IMasterModel : IId
|
|
{
|
|
string MasterFIO { get; }
|
|
double WorkingHours { get; }
|
|
public Dictionary<int, (IServiceModel, int)> MasterServices { get; }
|
|
}
|
|
}
|