9 lines
178 B
C#
9 lines
178 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace Core.Models.Eft.Ws;
|
|
|
|
public class WsAid : WsNotificationEvent
|
|
{
|
|
[JsonPropertyName("aid")]
|
|
public int? Aid { get; set; }
|
|
} |