SUBD_Labs/BeautySalonDataModels/Models/IMasterModel.cs

10 lines
246 B
C#
Raw Normal View History

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