Files
SPT-Server-Build/Core/Models/Eft/Ws/WsNotificationEvent.cs
T
2025-01-17 18:38:43 +00:00

14 lines
334 B
C#

using System.Text.Json.Serialization;
namespace Core.Models.Eft.Ws;
public record WsNotificationEvent
{
[JsonPropertyName("type")]
[JsonConverter(typeof(JsonStringEnumConverter))]
public NotificationEventType? EventType { get; set; }
[JsonPropertyName("eventId")]
public string? EventIdentifier { get; set; }
}