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

10 lines
239 B
C#
Raw Normal View History

2023-01-29 18:59:33 +04:00
namespace FlowerShopDataModels.Models
{
public interface IBouquetModel : IId
{
string BouquetName { get; }
double Price { get; }
Dictionary<int, (IComponentModel, int)> BouquetComponents { get; }
}
}