Files
2025-08-21 09:46:00 +00:00

13 lines
263 B
C#

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