12 lines
314 B
C#
12 lines
314 B
C#
namespace SushiBarDataModels.Models
|
|
{
|
|
public interface IStoreModel : IId
|
|
{
|
|
public string StoreName { get; }
|
|
public string StoreAddress { get; }
|
|
DateTime OpeningDate { get; }
|
|
Dictionary<int, (ISushiModel, int)> Sushis { get; }
|
|
public int maxSushi { get; }
|
|
}
|
|
}
|