10 lines
253 B
C#
10 lines
253 B
C#
using System.Text.Json.Serialization;
|
|
using Core.Models.Eft.Match;
|
|
|
|
namespace Core.Models.Eft.Ws;
|
|
|
|
public class WsGroupMatchRaidSettings : WsNotificationEvent
|
|
{
|
|
[JsonPropertyName("raidSettings")]
|
|
public RaidSettings? RaidSettings { get; set; }
|
|
} |