d14e7cc155
Co-authored-by: Alex <clodanSPT@hotmail.com> Co-authored-by: Chomp <27521899+chompDev@users.noreply.github.com>
15 lines
265 B
C#
15 lines
265 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; }
|
|
}
|