You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

42 lines
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. }