Files
SPT-Server-Build/Libraries/Core/Models/Eft/Bot/RandomisedBotLevelResult.cs
T
2025-02-07 19:36:17 +00:00

21 lines
298 B
C#

using System.Text.Json.Serialization;
namespace Core.Models.Eft.Bot;
public record RandomisedBotLevelResult
{
[JsonPropertyName("level")]
public int? Level
{
get;
set;
}
[JsonPropertyName("exp")]
public int? Exp
{
get;
set;
}
}