9db7ff25d1
* implement stash rows notification * rename class
10 lines
242 B
C#
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; }
|
|
}
|