Implemented more of Bot Generation

This commit is contained in:
Chomp
2025-01-14 16:56:37 +00:00
parent 7f411c808e
commit 144b63d8ef
5 changed files with 123 additions and 24 deletions
@@ -1,12 +1,12 @@
using System.Text.Json.Serialization;
using System.Text.Json.Serialization;
namespace Core.Models.Eft.Bot;
public class RandomisedBotLevelResult
{
[JsonPropertyName("level")]
public int? Level { get; set; }
public double? Level { get; set; }
[JsonPropertyName("exp")]
public int? Exp { get; set; }
}
public double? Exp { get; set; }
}