Files
SPT-Server-Build/Libraries/Core/Models/Eft/ItemEvent/EmptyItemEventRouterResponse.cs
T
2025-01-19 17:45:48 +00:00

10 lines
244 B
C#

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