Files
SPT-Server-Build/Core/Models/Eft/ItemEvent/EmptyItemEventRouterResponse.cs
T

9 lines
242 B
C#

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