namespace SushiBarDataModels.Models { public interface IDish : IId { string DishName { get; } string Category { get; } } }