Files
2025-08-21 09:46:00 +00:00

15 lines
392 B
C#

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