using System.Collections.Generic;
public class LeaderboardSnapshot
{
///
/// Name of the leaderboard this snapshot represents.
///
public string leaderboardName;
///
/// Top 100 records of the leaderboard. May be less
/// if the leaderboard has not grown enough yet.
/// May be empty if the leaderboard is empty.
///
public List<(string, float)> topRecords;
}