Files
LeagueARAMTracker/LeagueAPI/Models/Challenges/LolChallengesFriendLevelsData.cs
2026-03-08 20:45:01 +01:00

13 lines
287 B
C#

using System.Text.Json.Serialization;
namespace LeagueAPI.Models.Challenges;
public record class LolChallengesFriendLevelsData
{
[JsonPropertyName("level")]
public string? Level { get; init; }
[JsonPropertyName("friends")]
public string[]? Friends { get; init; }
}