11 lines
258 B
C#
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; }
|
|||
|
}
|
|||
|
}
|