您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 

42 行
592 B

  1. using System;
  2. namespace SUISS.Cloud
  3. {
  4. public interface IScoreRecord
  5. {
  6. string Username { get; }
  7. string Sauid { get; }
  8. string Sagid { get; }
  9. bool IsCheater { get; }
  10. string GameUuid { get; }
  11. string CountryCode { get; }
  12. string Signature { get; }
  13. string Data { get; }
  14. int PrimaryScore { get; }
  15. int SecondaryScore { get; }
  16. int TertiaryScore { get; }
  17. int QuaternaryScore { get; }
  18. int RankPage { get; }
  19. int CountryRankPage { get; }
  20. int Rank { get; }
  21. int CountryRank { get; }
  22. bool IslandReady { get; }
  23. }
  24. }