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