15 lines
292 B
C#
15 lines
292 B
C#
using System.Text.Json.Serialization;
|
|
using SPTarkov.Server.Core.Models.Utils;
|
|
|
|
namespace SPTarkov.Server.Core.Models.Eft.Dialog;
|
|
|
|
public record RemoveDialogRequestData : IRequestData
|
|
{
|
|
[JsonPropertyName("dialogId")]
|
|
public string? DialogId
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
}
|