12 lines
250 B
C#
12 lines
250 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; }
|
|
} |