PIbd21_Makarov_DV_FlowerShop/FlowerShop/FlowerShopDataModels/Models/IShopModel.cs
2024-04-19 02:23:50 +04:00

11 lines
299 B
C#

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