PIbd-23_Elatomtsev_L.K._Con.../Confectionery/ConfectioneryDataModels/Models/IShopModel.cs

10 lines
231 B
C#
Raw Normal View History

2024-06-20 02:41:23 +04:00
namespace ConfectioneryDataModels.Models
{
public interface IShopModel : IId
{
string ShopName { get; }
string Address { get; }
DateTime DateOpen { get; }
Dictionary<int, (IPastryModel, int)> ShopPastries { get; }
}
}