15 lines
392 B
C#
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; }
|
|
}
|