10 lines
259 B
C#
10 lines
259 B
C#
|
namespace FlowerShopDataModels.Models
|
|||
|
{
|
|||
|
public interface IShopModel : IId
|
|||
|
{
|
|||
|
string ShopName { get; }
|
|||
|
string Address { get; }
|
|||
|
Dictionary<int, (IFlowerModel, int)> Flowers { get; }
|
|||
|
DateTime DateOpening { get; }
|
|||
|
}
|
|||
|
}
|