OtherApiPoolDTO.cs 563 B

12345678910111213141516
  1. namespace molilian.core
  2. {
  3. public class OtherApiPoolDTO
  4. {
  5. public int id { get; set; }
  6. public string name { get; set; } = string.Empty;
  7. public string key { get; set; } = string.Empty;
  8. public string sessionKey { get; set; } = string.Empty;
  9. public DateTime create_time { get; set; }
  10. public DateTime last_time { get; set; }
  11. public bool status { get; set; }
  12. public string refpid { get; set; } = string.Empty;
  13. public string api_url { get; set; } = string.Empty;
  14. }
  15. }