namespace SushiBarDataModels.Models { public interface IDishModel : IId { string DishName { get; } string Category { get; } double Price { get; } Dictionary DishIngredients { get; } } }