EndPointDTO.cs 728 B

12345678910111213141516171819202122
  1. using System.Xml.Linq;
  2. using TencentCloud.Ame.V20190916.Models;
  3. using TencentCloud.Mrs.V20200910.Models;
  4. namespace molilian.core
  5. {
  6. public class EndPointDTO
  7. {
  8. public int id { get; set; }
  9. public string name { get; set; } = string.Empty;
  10. public string description { get; set; } = string.Empty;
  11. public string redis_server { get; set; } = string.Empty;
  12. public string api_server { get; set; } = string.Empty;
  13. public DateTime create_time { get; set; }
  14. public DateTime last_time { get; set; }
  15. public bool status { get; set; } = false;
  16. public bool is_public_api { get; set; } = false;
  17. public bool is_coupon_api { get; set; } = false;
  18. }
  19. }