Files
SVSimServer/SVSim.Bootstrap/Models/Seed/BattlePassLevelSeed.cs
2026-05-26 21:57:47 -04:00

11 lines
353 B
C#

using System.Text.Json.Serialization;
namespace SVSim.Bootstrap.Models.Seed;
/// <summary>Mirrors a single entry in <c>seeds/battle-pass-levels.json</c>.</summary>
public sealed class BattlePassLevelSeed
{
[JsonPropertyName("level")] public int Level { get; set; }
[JsonPropertyName("required_point")] public int RequiredPoint { get; set; }
}