13 lines
407 B
C#
13 lines
407 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace SPTarkov.Server.Core.Models.Eft.ItemEvent;
|
|
|
|
/// <summary>
|
|
/// An object sent back to the game client that contains alterations the client must make to ensure server/client are in sync
|
|
/// </summary>
|
|
public record ItemEventRouterResponse : ItemEventRouterBase
|
|
{
|
|
[JsonExtensionData]
|
|
public Dictionary<string, object>? ExtensionData { get; set; }
|
|
}
|