Files
SPT-Server-Build/Core/Models/Eft/Ws/WsNotificationEvent.cs
T
2025-01-07 06:04:21 -05:00

12 lines
252 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; }
}