using System; namespace SUISS.Cloud { public interface IScoreRecord { string Username { get; } string Sauid { get; } string Sagid { get; } bool IsCheater { get; } string GameUuid { get; } string CountryCode { get; } string Signature { get; } string Data { get; } int PrimaryScore { get; } int SecondaryScore { get; } int TertiaryScore { get; } int QuaternaryScore { get; } int RankPage { get; } int CountryRankPage { get; } int Rank { get; } int CountryRank { get; } bool IslandReady { get; } } }