PIbd-23-Nasyrov-A.G.-Flower.../FlowerShopDataModels/IShopModel.cs
2024-03-14 21:28:58 +04:00

18 lines
411 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace FlowerShopDataModels.Models
{
public interface IShopModel : IId
{
string ShopName { get; }
string Address { get; }
DateTime DateOpen { get; }
int MaxCapacity { get; }
Dictionary<int, (IFlowerModel, int)> ShopFlowers { get; }
}
}