namespace SushiBarDataModels.Models { public interface IStoreModel : IId { public string StoreName { get; set; } public string StoreAdress { get; set; } DateTime OpeningDate { get; } Dictionary Sushis { get; } } }