PIbd21_Makarov_DV_FlowerShop/FlowerShop/FlowerShopDataModels/Models/IFlowerModel.cs

10 lines
233 B
C#
Raw Normal View History

2024-02-24 09:40:58 +04:00
namespace FlowerShopDataModels.Models
{
public interface IFlowerModel : IId
{
string FlowerName { get; }
double Price { get; }
Dictionary<int, (IComponentModel, int)> FlowerComponents { get; }
}
}