PIbd21_Makarov_DV_FlowerShop/FlowerShop/FlowerShopDataModels/Models/IShopModel.cs

10 lines
259 B
C#
Raw Normal View History

2024-04-04 00:29:16 +04:00
namespace FlowerShopDataModels.Models
{
public interface IShopModel : IId
{
string ShopName { get; }
string Address { get; }
Dictionary<int, (IFlowerModel, int)> Flowers { get; }
DateTime DateOpening { get; }
}
}