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