using System; using System.Collections.Generic; using System.Linq; namespace AbstractSushiBarDataModels.Models { public interface IProductModel : IId { string ProductName { get; } double Price { get; } Dictionary ProductComponents { get; } } }