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