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

10 lines
220 B
C#

using System.Text.Json.Serialization;
namespace SPTarkov.Server.Core.Models.Eft.Ws;
public record WsGroupMatchLeaderChanged : WsNotificationEvent
{
[JsonPropertyName("owner")]
public int? Owner { get; set; }
}