9 lines
242 B
C#
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; } = "";
|
|
} |