9 lines
174 B
C#
9 lines
174 B
C#
using Newtonsoft.Json;
|
|
|
|
namespace LinkToolAddin.host.prompt;
|
|
|
|
public class PromptDefinition
|
|
{
|
|
[JsonProperty("prompt")]
|
|
public UserPrompt UserPrompt { get; set; }
|
|
} |