TkPoolDTO.cs 1.3 KB

1234567891011121314151617181920212223242526272829
  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. public string end_point { get; set; } = string.Empty;
  25. public bool enable_fake_click { get; set; } = false;
  26. public bool enable_parse { get; set; } = false;
  27. public bool enable_coupon { get; set; } = false;
  28. }
  29. }