Files
SPT-Server-Build/Libraries/SPTarkov.Server.Core/Models/Eft/Ws/WsGroupMatchInviteAccept.cs
T
2025-06-18 17:09:20 +00:00

33 lines
949 B
C#

using System.Text.Json.Serialization;
using SPTarkov.Server.Core.Models.Eft.Match;
namespace SPTarkov.Server.Core.Models.Eft.Ws;
public record WsGroupMatchInviteAccept : WsNotificationEvent // TODO: trying to inherit multiTypes
{
// Copy pasted properties from GroupCharacter to resolve multitype
[JsonPropertyName("_id")]
public string? Id { get; set; }
[JsonPropertyName("aid")]
public int? Aid { get; set; }
[JsonPropertyName("Info")]
public CharacterInfo? Info { get; set; }
[JsonPropertyName("PlayerVisualRepresentation")]
public PlayerVisualRepresentation? VisualRepresentation { get; set; }
[JsonPropertyName("isLeader")]
public bool? IsLeader { get; set; }
[JsonPropertyName("isReady")]
public bool? IsReady { get; set; }
[JsonPropertyName("region")]
public string? Region { get; set; }
[JsonPropertyName("lookingGroup")]
public bool? LookingGroup { get; set; }
}