namespace SushiBarDataModels.Models { public interface IStoreModel : IId { public string StoreName { get; } public string StoreAddress { get; } DateTime OpeningDate { get; } Dictionary Sushis { get; } public int maxSushi { get; } } }