12 lines
250 B
C#
12 lines
250 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace Core.Models.Eft.Ws;
|
|
|
|
public class WsAidNickname : WsNotificationEvent
|
|
{
|
|
[JsonPropertyName("aid")]
|
|
public int Aid { get; set; }
|
|
|
|
[JsonPropertyName("Nickname")]
|
|
public string Nickname { get; set; }
|
|
} |