10 lines
271 B
C#
10 lines
271 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace SPTarkov.Server.Core.Models.Eft.ItemEvent;
|
|
|
|
public record EmptyItemEventRouterResponse : ItemEventRouterBase
|
|
{
|
|
[JsonPropertyName("profileChanges")]
|
|
public new string? ProfileChanges { get; set; } = string.Empty;
|
|
}
|