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 519 B

12345678910111213141516171819202122
  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. }
  19. }