TkConfigDTO.cs 908 B

1234567891011121314151617181920212223
  1. using System.ComponentModel.DataAnnotations;
  2. using System.ComponentModel.DataAnnotations.Schema;
  3. namespace molilian.core
  4. {
  5. [Table("tk_config")]
  6. public class TkConfigDTO
  7. {
  8. [Key]
  9. public int id { get; set; }
  10. public int ignorePercentage { get; set; } = 0;
  11. public int jdIgnorePercentage { get; set; } = 0;
  12. public string pass_salt { get; set; } = string.Empty;
  13. public string ignorePercentageCity { get; set; } = string.Empty;
  14. public int fake_click_min { get; set; }
  15. public int fake_click_max { get; set; }
  16. public int fake_click_ttl { get; set; } = 86400;
  17. public int rt_max { get; set; } = 0;
  18. public string tk_whitelist_regular { get; set; } = string.Empty;
  19. public string tk_blacklist_regular { get; set; } = string.Empty;
  20. public string multi_token_regular { get; set; } = string.Empty;
  21. }
  22. }