ARAM balance data from aramonly.com

This commit is contained in:
2026-04-29 01:21:18 +02:00
parent 076c0a9a8d
commit 61eee88078
4 changed files with 141 additions and 119 deletions
@@ -1,4 +1,5 @@
using System.Text.Json.Serialization;
using LeagueAPI.ARAM;
namespace LeagueAPI.Models.DDragon.Champions;
@@ -41,5 +42,5 @@ public record ChampionData
public ChampionDataStats? Stats { get; init; }
[JsonIgnore]
public Dictionary<string, double> AramBalance { get; set; } = [];
public AramChampion? AramBalance { get; set; }
}