12 lines
294 B
C#
12 lines
294 B
C#
namespace SushiBarDataModels.Models
|
|
{
|
|
public interface IShopModel : IId
|
|
{
|
|
string ShopName { get; }
|
|
string Address { get; }
|
|
DateTime DateOpening { get; }
|
|
Dictionary<int, (ISushiModel, int)> ListSushi { get; }
|
|
int MaxCountSushi { get; }
|
|
}
|
|
}
|