You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

KeepDataBase.cs 893 B

2 years ago
2 years ago
2 years ago
1234567891011121314151617181920212223242526272829303132
  1. 
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. using HBLConsole.Service;
  8. using System.Collections.ObjectModel;
  9. using System.Collections.Concurrent;
  10. namespace HBLConsole.Model
  11. {
  12. public class KeepDataBase
  13. {
  14. /// <summary>
  15. /// 模拟订单数据的配置
  16. /// </summary>
  17. public ObservableCollection<SimOrderVisibleData> simOrderConfig { get; set; } = new ObservableCollection<SimOrderVisibleData>();
  18. /// <summary>
  19. /// 需要保存的订单数据
  20. /// </summary>
  21. public ObservableCollection<OrderData> orderLists { get; set; } = new ObservableCollection<OrderData>();
  22. /// <summary>
  23. /// 参数设置
  24. /// </summary>
  25. public ObservableCollection<ParSet> parSets { get; set; } = new ObservableCollection<ParSet>();
  26. }
  27. }