11 lines
276 B
C#

namespace SushiBarDataModels.Models
{
public interface IStoreModel : IId
{
public string StoreName { get; }
public string StoreAdress { get; }
DateTime OpeningDate { get; }
Dictionary<int, (ISushiModel, int)> Sushis { get; }
}
}