10 lines
239 B
C#
10 lines
239 B
C#
namespace FlowerShopDataModels.Models
|
|
{
|
|
public interface IBouquetModel : IId
|
|
{
|
|
string BouquetName { get; }
|
|
double Price { get; }
|
|
Dictionary<int, (IComponentModel, int)> BouquetComponents { get; }
|
|
}
|
|
}
|