2024-06-20 06:10:16 +04:00

11 lines
258 B
C#

namespace ConfectioneryDataModels.Models
{
public interface IShopModel : IId
{
string ShopName { get; }
string Address { get; }
DateTime DateOpen { get; }
int MaxCapacity { get; }
Dictionary<int, (IPastryModel, int)> ShopPastries { get; }
}
}