PIbd-21_Rodionov_I.A._IceCr.../IceCreamShop/IceCreamShopDataModels/Models/IShopModel.cs

14 lines
273 B
C#

namespace IceCreamShopDataModels.Models
{
public interface IShopModel : IId
{
string ShopName { get; }
string Address { get; }
DateTime DateOpening { get; }
Dictionary<int, (IIceCreamModel, int)> ShopIceCreams { get; }
}
}