Add project files.
This commit is contained in:
15
LeagueAPI/Models/ChampSelect/ChampSelectChatRoomDetails.cs
Normal file
15
LeagueAPI/Models/ChampSelect/ChampSelectChatRoomDetails.cs
Normal file
@@ -0,0 +1,15 @@
|
||||
using System.Text.Json.Serialization;
|
||||
|
||||
namespace LeagueAPI.Models.ChampSelect;
|
||||
|
||||
public record class ChampSelectChatRoomDetails
|
||||
{
|
||||
[JsonPropertyName("multiUserChatId")]
|
||||
public string? MultiUserChatId { get; init; }
|
||||
|
||||
[JsonPropertyName("multiUserChatPassword")]
|
||||
public string? MultiUserChatPassword { get; init; }
|
||||
|
||||
[JsonPropertyName("mucJwtDto")]
|
||||
public MucJwtDto? MucJwtDto { get; init; }
|
||||
}
|
||||
Reference in New Issue
Block a user