2023-06-13 23:37:46 +04:00

11 lines
262 B
C#

namespace FlowerShopDataModels.Models
{
public interface IShopModel : IId
{
string Name { get; }
string Address { get; }
DateTime OpeningDate { get; }
Dictionary<int, (IBouquetModel, int)> ShopBouquets { get; }
}
}