2639504471
Removed unnecessary properties from quest object
13 lines
363 B
C#
13 lines
363 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace SPTarkov.Server.Core.Models.Eft.ItemEvent;
|
|
|
|
public record EmptyItemEventRouterResponse : ItemEventRouterBase
|
|
{
|
|
[JsonExtensionData]
|
|
public Dictionary<string, object>? ExtensionData { get; set; }
|
|
|
|
[JsonPropertyName("profileChanges")]
|
|
public new string? ProfileChanges { get; set; } = string.Empty;
|
|
}
|