13 lines
287 B
C#
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; }
|
|
}
|