终端一体化运控平台
25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

RemoteRecipeDataColl.cs 341 B

12345678910111213
  1. using System.Collections.ObjectModel;
  2. namespace BPASmartClient.FoodStationTest.Model
  3. {
  4. /// <summary>
  5. /// 远程配方数据集合。
  6. /// </summary>
  7. public class RemoteRecipeDataColl
  8. {
  9. public ObservableCollection<RemoteRecipeData> Recipes { get; set; } = new ObservableCollection<RemoteRecipeData>();
  10. }
  11. }