Files
SPT-Server-Build/Libraries/Core/Models/Eft/ItemEvent/EmptyItemEventRouterResponse.cs
T
2025-02-07 19:36:17 +00:00

14 lines
268 B
C#

using System.Text.Json.Serialization;
namespace Core.Models.Eft.ItemEvent;
public record EmptyItemEventRouterResponse : ItemEventRouterBase
{
[JsonPropertyName("profileChanges")]
public string? ProfileChanges
{
get;
set;
} = "";
}