JobHistoryItem.cs 639 B

123456789101112131415161718192021
  1. using System.Collections.ObjectModel;
  2. namespace VirgoUI.Client.Models.History.JobHistory
  3. {
  4. public class JobHistoryItem
  5. {
  6. public string JobNmae { get; set; }
  7. public string CarrierID { get; set; }
  8. public string LoadPort { get; set; }
  9. public string CreateTime { get; set; }
  10. public string EndTime { get; set; }
  11. public string Status { get; set; }
  12. private ObservableCollection<JobHistoryItem> _children = new ObservableCollection<JobHistoryItem>();
  13. public ObservableCollection<JobHistoryItem> Children
  14. {
  15. get { return _children; }
  16. }
  17. }
  18. }