Files
rudder-csharp-sdk/Leaderboards/RankEntry.cs
T

21 lines
424 B
C#
Raw Permalink Normal View History

2026-08-12 14:04:55 +03:00
// Code generated by apigen. DO NOT EDIT.
using Newtonsoft.Json;
namespace RudderSdk.Core.Models.Leaderboards;
public class RankEntry
{
[JsonProperty("playerId")]
2026-08-29 11:33:01 +03:00
public string? PlayerId { get; set; }
2026-08-12 14:04:55 +03:00
[JsonProperty("playerName")]
2026-08-29 11:33:01 +03:00
public string? PlayerName { get; set; }
2026-08-12 14:04:55 +03:00
[JsonProperty("rank")]
2026-08-29 11:33:01 +03:00
public long? Rank { get; set; }
2026-08-12 14:04:55 +03:00
[JsonProperty("score")]
2026-08-29 11:33:01 +03:00
public double? Score { get; set; }
2026-08-12 14:04:55 +03:00
}