VeapiPoolDTO.cs 484 B

123456789101112131415
  1. namespace molilian.core
  2. {
  3. public class VeapiPoolDTO
  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. }
  14. }