123456789101112131415161718192021 |
- using System.Collections.ObjectModel;
- namespace VirgoUI.Client.Models.History.JobHistory
- {
- public class JobHistoryItem
- {
- public string JobNmae { get; set; }
- public string CarrierID { get; set; }
- public string LoadPort { get; set; }
- public string CreateTime { get; set; }
- public string EndTime { get; set; }
- public string Status { get; set; }
- private ObservableCollection<JobHistoryItem> _children = new ObservableCollection<JobHistoryItem>();
- public ObservableCollection<JobHistoryItem> Children
- {
- get { return _children; }
- }
- }
- }
|