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; } }