Wired up notification alert reward - untested #576

This commit is contained in:
Chomp
2025-08-28 22:43:08 +01:00
parent a56fa9e017
commit d3f95de546
3 changed files with 37 additions and 2 deletions
@@ -0,0 +1,16 @@
using System.Text.Json.Serialization;
using SPTarkov.Server.Core.Models.Common;
namespace SPTarkov.Server.Core.Models.Eft.Ws;
public record WsNotificationPopup : WsNotificationEvent
{
[JsonPropertyName("eventId")]
public MongoId EventId { get; set; }
[JsonPropertyName("image")]
public string Image { get; set; }
[JsonPropertyName("message")]
public MongoId Message { get; set; }
}