10 lines
258 B
C#
10 lines
258 B
C#
using System.Text.Json.Serialization;
|
|
using Core.Models.Eft.Match;
|
|
|
|
namespace Core.Models.Eft.Ws;
|
|
|
|
public class WsGroupMatchRaidReady : WsNotificationEvent
|
|
{
|
|
[JsonPropertyName("extendedProfile")]
|
|
public GroupCharacter? ExtendedProfile { get; set; }
|
|
} |