using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace BPASmartClient.MorkF.Model { public class FoodMenuModel { public string ID { get; set; } public string FoodName { get; set; } public Dictionary FoodHouseMaterials { get; set; } = new Dictionary(); } }