PIbd21_Makarov_DV_FlowerShop/FlowerShop/FlowerShopDataModels/Models/IFlowerModel.cs

10 lines
233 B
C#

namespace FlowerShopDataModels.Models
{
public interface IFlowerModel : IId
{
string FlowerName { get; }
double Price { get; }
Dictionary<int, (IComponentModel, int)> FlowerComponents { get; }
}
}