Files
SVSimServer/SVSim.EmulatedEntrypoint/Models/Dtos/BattlePassLevel.cs
2026-05-23 15:47:23 -04:00

15 lines
358 B
C#

using MessagePack;
using System.Text.Json.Serialization;
namespace SVSim.EmulatedEntrypoint.Models.Dtos;
[MessagePackObject]
public class BattlePassLevel
{
[JsonPropertyName("level")]
[Key("level")]
public int Level { get; set; }
[JsonPropertyName("required_point")]
[Key("required_point")]
public int RequiredPoints { get; set; }
}