529fe61f23
* Cleanup BotController.cs * More controller cleanup * More dialogue changes
15 lines
400 B
C#
15 lines
400 B
C#
using System.Text.Json.Serialization;
|
|
using SPTarkov.Server.Core.Models.Common;
|
|
using SPTarkov.Server.Core.Models.Utils;
|
|
|
|
namespace SPTarkov.Server.Core.Models.Eft.Dialog;
|
|
|
|
public record RemoveDialogRequestData : IRequestData
|
|
{
|
|
[JsonExtensionData]
|
|
public Dictionary<string, object>? ExtensionData { get; set; }
|
|
|
|
[JsonPropertyName("dialogId")]
|
|
public MongoId? DialogId { get; set; }
|
|
}
|