Files
2025-06-18 17:09:20 +00:00

11 lines
287 B
C#

using System.Text.Json.Serialization;
using SPTarkov.Server.Core.Models.Eft.Match;
namespace SPTarkov.Server.Core.Models.Eft.Ws;
public record WsGroupMatchRaidSettings : WsNotificationEvent
{
[JsonPropertyName("raidSettings")]
public RaidSettings? RaidSettings { get; set; }
}