TkPoolDTO.cs 1002 B

123456789101112131415161718192021222324
  1. namespace molilian.core
  2. {
  3. public class TkPoolDTO
  4. {
  5. public int id { get; set; }
  6. public string name { get; set; } = string.Empty;
  7. public string description { get; set; } = string.Empty;
  8. public string tb_token { get; set; } = string.Empty;
  9. public string floorId { get; set; } = string.Empty;
  10. public string refpid { get; set; } = string.Empty;
  11. public string cookies { get; set; } = string.Empty;
  12. public string user_agent { get; set; } = string.Empty;
  13. public DateTime create_time { get; set; }
  14. public DateTime last_time { get; set; }
  15. public bool status { get; set; }
  16. public string nodeName { get; set; } = string.Empty;
  17. public decimal current_amt { get; set; } = 0;
  18. public decimal daily_income_limit { get; set; } = 0;
  19. public decimal draw_balance { get; set; } = 0;
  20. public string api { get; set; } = string.Empty;
  21. public int api_id { get; set; } = 0;
  22. }
  23. }