PIbd-21_Musoev_D.T._FlowerShop/FlowerShop/FlowerShopDataModels/Models/IBouquetModel.cs
2023-04-14 01:56:19 +04:00

10 lines
239 B
C#

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