15 lines
358 B
C#
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; }
|
|
} |