NetConnectionInfo.cs 471 B

1234567891011121314151617
  1. using System;
  2. using System.Data;
  3. using System.Drawing;
  4. namespace Azylee.Core.NetUtils
  5. {
  6. public class NetConnectionInfo
  7. {
  8. public string ProtocolName { get; set; }
  9. public string LocalIP { get; set; }
  10. public int LocalPort { get; set; }
  11. public string RemoteIP { get; set; }
  12. public int RemotePort { get; set; }
  13. public ConnectionState Status { get; set; }
  14. public DateTime LastUpdateTime { get; set; }
  15. }
  16. }