Files
SPT-Server-Build/Libraries/SPTarkov.Server.Core/Models/Eft/Ws/WsNotificationEvent.cs
T
2025-03-07 13:16:43 +00:00

22 lines
398 B
C#

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