17 lines
343 B
C#
17 lines
343 B
C#
// Code generated by apigen. DO NOT EDIT.
|
|
using Newtonsoft.Json;
|
|
using Newtonsoft.Json.Linq;
|
|
using System.Collections.Generic;
|
|
|
|
namespace RudderSdk.Core.Models.Leaderboards;
|
|
|
|
public class SubmitScoreRequest
|
|
{
|
|
[JsonProperty("score")]
|
|
public double Score { get; set; }
|
|
|
|
[JsonProperty("slug")]
|
|
public string Slug { get; set; }
|
|
|
|
}
|