Add project files.
This commit is contained in:
18
LeagueAPI/Models/ChampSelect/MucJwtDto.cs
Normal file
18
LeagueAPI/Models/ChampSelect/MucJwtDto.cs
Normal file
@@ -0,0 +1,18 @@
|
||||
using System.Text.Json.Serialization;
|
||||
|
||||
namespace LeagueAPI.Models.ChampSelect;
|
||||
|
||||
public record class MucJwtDto
|
||||
{
|
||||
[JsonPropertyName("jwt")]
|
||||
public string? Jwt { get; init; }
|
||||
|
||||
[JsonPropertyName("channelClaim")]
|
||||
public string? ChannelClaim { get; init; }
|
||||
|
||||
[JsonPropertyName("domain")]
|
||||
public string? Domain { get; init; }
|
||||
|
||||
[JsonPropertyName("targetRegion")]
|
||||
public string? TargetRegion { get; init; }
|
||||
}
|
||||
Reference in New Issue
Block a user