| 1234567891011121314151617181920212223 |
- using System.Xml.Linq;
- using TencentCloud.Ame.V20190916.Models;
- namespace molilian.core
- {
- public class ProxyNodesDTO
- {
- public int id { get; set; }
- public bool status { get; set; }
- public string name { get; set; } = string.Empty;
- public string description { get; set; } = string.Empty;
- public string type { get; set; } = string.Empty;
- public string server { get; set; } = string.Empty;
- public string username { get; set; } = string.Empty;
- public string password { get; set; } = string.Empty;
- public string user_agent { get; set; } = string.Empty;
- public DateTime create_time { get; set; }
- public DateTime last_time { get; set; }
- }
- }
|