| 12345678910111213141516171819202122 |
- using System.Xml.Linq;
- using TencentCloud.Ame.V20190916.Models;
- using TencentCloud.Mrs.V20200910.Models;
- namespace molilian.core
- {
- public class EndPointDTO
- {
- public int id { get; set; }
- public string name { get; set; } = string.Empty;
- public string description { get; set; } = string.Empty;
- public string redis_server { get; set; } = string.Empty;
- public string db_server { get; set; } = string.Empty;
- public string api_server { get; set; } = string.Empty;
- public DateTime create_time { get; set; }
- public DateTime last_time { get; set; }
- public bool status { get; set; } = false;
- public bool is_public_api { get; set; } = false;
- public bool is_coupon_api { get; set; } = false;
- }
- }
|