12 lines
300 B
C#
Raw Normal View History

2023-06-13 23:37:46 +04:00
namespace FlowerShopDataModels.Models
{
public interface IShopModel : IId
{
string Name { get; }
string Address { get; }
DateTime OpeningDate { get; }
2023-06-13 23:57:26 +04:00
int MaxCountBouquets { get; }
2023-06-13 23:37:46 +04:00
Dictionary<int, (IBouquetModel, int)> ShopBouquets { get; }
}
}