21 lines
326 B
C#
21 lines
326 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace Core.Models.Eft.Ws;
|
|
|
|
public record WsGroupMatchInviteDecline : WsNotificationEvent
|
|
{
|
|
[JsonPropertyName("aid")]
|
|
public int? Aid
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
|
|
[JsonPropertyName("Nickname")]
|
|
public string? Nickname
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
}
|