NetProcessInfo.cs 798 B

1234567891011121314151617181920212223
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Drawing;
  4. namespace Azylee.Core.NetUtils
  5. {
  6. public class NetProcessInfo
  7. {
  8. public int ProcessId { get; set; }
  9. public string ProcessName { get; set; }
  10. public Icon ProcessIcon { get; set; }
  11. public DateTime LastUpdateTime { get; set; }
  12. public int UploadData { get; set; }
  13. public int DownloadData { get; set; }
  14. public long UploadDataCount { get; set; }
  15. public long DownloadDataCount { get; set; }
  16. public int UploadBag { get; set; }
  17. public int DownloadBag { get; set; }
  18. public long UploadBagCount { get; set; }
  19. public long DownloadBagCount { get; set; }
  20. public List<NetConnectionInfo> NetConnectionInfoList { get; set; }
  21. }
  22. }