|
123456789101112131415161718192021 |
- 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<int,int> FoodHouseMaterials { get; set; } = new Dictionary<int,int>();
-
- }
-
-
-
-
-
- }
|