16 lines
393 B
C#
16 lines
393 B
C#
using System.Text.Json.Serialization;
|
|
using Core.Models.Eft.Match;
|
|
|
|
namespace Core.Models.Eft.Ws;
|
|
|
|
public class WsGroupMatchInviteSend : WsNotificationEvent
|
|
{
|
|
[JsonPropertyName("requestId")]
|
|
public string RequestId { get; set; }
|
|
|
|
[JsonPropertyName("from")]
|
|
public int From { get; set; }
|
|
|
|
[JsonPropertyName("members")]
|
|
public List<GroupCharacter> Members { get; set; }
|
|
} |