10 lines
233 B
C#
10 lines
233 B
C#
|
namespace FlowerShopDataModels.Models
|
||
|
{
|
||
|
public interface IFlowerModel : IId
|
||
|
{
|
||
|
string FlowerName { get; }
|
||
|
double Price { get; }
|
||
|
Dictionary<int, (IComponentModel, int)> FlowerComponents { get; }
|
||
|
}
|
||
|
|
||
|
}
|