19 lines
434 B
C#
19 lines
434 B
C#
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; }
|
|
}
|