Files
SPT-Server-Build/Core/Models/Eft/ItemEvent/EmptyItemEventRouterResponse.cs
T
2025-01-06 22:52:49 +00:00

9 lines
241 B
C#

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