using Newtonsoft.Json; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace DidabuCloud.Unity.Core { public class AppDataLeaderboardDto { [JsonProperty("accountId")] public string AccountId { get; set; } [JsonProperty("userName")] public string UserName { get; set; } [JsonProperty("headImageUrl")] public string HeadImageUrl { get; set; } [JsonProperty("value")] public long Value { get; set; } } }