13 lines
249 B
C#
13 lines
249 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace Core.Models.Eft.Bot;
|
|
|
|
public class RandomisedBotLevelResult
|
|
{
|
|
[JsonPropertyName("level")]
|
|
public int? Level { get; set; }
|
|
|
|
[JsonPropertyName("exp")]
|
|
public int? Exp { get; set; }
|
|
}
|