Files
SPT-Server-Build/Core/Models/Eft/Ws/WsGroupMatchLeaderChanged.cs
T
2025-01-08 14:01:23 +00:00

9 lines
202 B
C#

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