Add project files.
This commit is contained in:
12
LeagueAPI/Models/Challenges/LolChallengesFriendLevelsData.cs
Normal file
12
LeagueAPI/Models/Challenges/LolChallengesFriendLevelsData.cs
Normal file
@@ -0,0 +1,12 @@
|
||||
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; }
|
||||
}
|
||||
Reference in New Issue
Block a user