ProxyNodesDTO.cs 823 B

1234567891011121314151617181920212223
  1. using System.Xml.Linq;
  2. using TencentCloud.Ame.V20190916.Models;
  3. namespace molilian.core
  4. {
  5. public class ProxyNodesDTO
  6. {
  7. public int id { get; set; }
  8. public bool status { get; set; }
  9. public string name { get; set; } = string.Empty;
  10. public string description { get; set; } = string.Empty;
  11. public string end_point { get; set; } = string.Empty;
  12. public string type { get; set; } = string.Empty;
  13. public string server { get; set; } = string.Empty;
  14. public string username { get; set; } = string.Empty;
  15. public string password { get; set; } = string.Empty;
  16. public string user_agent { get; set; } = string.Empty;
  17. public DateTime create_time { get; set; }
  18. public DateTime last_time { get; set; }
  19. }
  20. }