16 lines
293 B
C#
16 lines
293 B
C#
namespace PlumbingRepairDataModels.Models
|
|
{
|
|
public class IShopModel
|
|
{
|
|
string ShopName { get; }
|
|
|
|
string Address { get; }
|
|
|
|
DateTime DateOpening { get; }
|
|
|
|
int maxCountWorks { get; }
|
|
|
|
Dictionary<int, (IWorkModel, int)> ShopWorks { get; }
|
|
}
|
|
}
|