mirror of
https://github.com/TbT480jcspy/Iris-Rec-2023-Server-Code.git
synced 2026-09-08 14:41:24 -07:00
14 lines
394 B
C#
14 lines
394 B
C#
using Newtonsoft.Json;
|
|
using System.Text.Json.Serialization;
|
|
|
|
namespace ir23.Data
|
|
{
|
|
public class progression
|
|
{
|
|
[JsonPropertyName("Id")] public long Id { get; set; }
|
|
[JsonPropertyName("PlayerId")] public long PlayerId { get; set; }
|
|
[JsonPropertyName("Level")] public int Level { get; set; }
|
|
[JsonPropertyName("XP")] public int XP { get; set; }
|
|
}
|
|
}
|