using ConfectioneryDataModels.Models; namespace ConfectioneryContracts.BindingModels { public class PastryBindingModel : IPastryModel { public int Id { get; set; } public string PastryName { get; set; } = string.Empty; public double Price { get; set; } public Dictionary PastryComponents { get; set; } = new(); } }