Files
Cj 9db7ff25d1 Implement websocket stash row change notification (#462)
* implement stash rows notification

* rename class
2025-07-08 18:30:23 +01:00

10 lines
242 B
C#

using System.Text.Json.Serialization;
namespace SPTarkov.Server.Core.Models.Eft.Ws;
public record WsProfileChangeEvent : WsNotificationEvent
{
[JsonPropertyName("Changes")]
public Dictionary<string, double?> Changes { get; set; }
}