TkPoolDTO.cs 1.1 KB

12345678910111213141516171819202122232425
  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 company { get; set; } = string.Empty;
  8. public string phone { get; set; } = string.Empty;
  9. public string description { get; set; } = string.Empty;
  10. public string tb_token { get; set; } = string.Empty;
  11. public string floorId { get; set; } = string.Empty;
  12. public string refpid { get; set; } = string.Empty;
  13. public string cookies { get; set; } = string.Empty;
  14. public string user_agent { get; set; } = string.Empty;
  15. public DateTime create_time { get; set; }
  16. public DateTime last_time { get; set; }
  17. public bool status { get; set; }
  18. public string nodeName { get; set; } = string.Empty;
  19. public decimal current_amt { get; set; } = 0;
  20. public decimal daily_income_limit { get; set; } = 0;
  21. public decimal draw_balance { get; set; } = 0;
  22. public string api { get; set; } = string.Empty;
  23. public int api_id { get; set; } = 0;
  24. }
  25. }