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