Files
SPT-Server-Build/Core/Models/Eft/Bot/RandomisedBotLevelResult.cs
T
2025-01-17 18:13:37 +00:00

13 lines
250 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; }
}