PIbd-23_Polevoy_S.V._Flower.../FlowerShop/FlowerShopDataModels/Models/IBouquetModel.cs

10 lines
239 B
C#

namespace FlowerShopDataModels.Models
{
public interface IBouquetModel : IId
{
string BouquetName { get; }
double Price { get; }
Dictionary<int, (IComponentModel, int)> BouquetComponents { get; }
}
}