12 lines
264 B
C#
12 lines
264 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace Core.Models.Eft.Ws;
|
|
|
|
public class WsNotificationEvent
|
|
{
|
|
[JsonPropertyName("type")]
|
|
public string? EventType { get; set; }
|
|
|
|
[JsonPropertyName("eventId")]
|
|
public string? EventIdentifier { get; set; }
|
|
} |