Files
SPT-Server-Build/Libraries/Core/Models/Eft/Ws/WsGroupMatchLeaderChanged.cs
T
2025-02-07 19:36:17 +00:00

14 lines
228 B
C#

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