| 12345678910111213141516171819202122232425 |
- namespace molilian.core
- {
- public class TkPoolDTO
- {
- public int id { get; set; }
- public string name { get; set; } = string.Empty;
- public string company { get; set; } = string.Empty;
- public string phone { get; set; } = string.Empty;
- public string description { get; set; } = string.Empty;
- public string tb_token { get; set; } = string.Empty;
- public string floorId { get; set; } = string.Empty;
- public string refpid { get; set; } = string.Empty;
- public string cookies { get; set; } = string.Empty;
- public string user_agent { get; set; } = string.Empty;
- public DateTime create_time { get; set; }
- public DateTime last_time { get; set; }
- public bool status { get; set; }
- public string nodeName { get; set; } = string.Empty;
- public decimal current_amt { get; set; } = 0;
- public decimal daily_income_limit { get; set; } = 0;
- public decimal draw_balance { get; set; } = 0;
- public string api { get; set; } = string.Empty;
- public int api_id { get; set; } = 0;
- }
- }
|