JGameUrlParamsDto.cs 332 B

123456789101112
  1. namespace GFGGame
  2. {
  3. public class JGameUrlParamsDto
  4. {
  5. public string user_id { get; set; }
  6. public string user_name { get; set; }
  7. public string uuid { get; set; }
  8. public string sign { get; set; }
  9. public string timestamp { get; set; }
  10. public string cp_ext { get; set; }
  11. }
  12. }