PIbd21_Makarov_DV_FlowerShop/FlowerShop/FlowerShopDataModels/Models/IShopModel.cs

10 lines
259 B
C#

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