10 lines
263 B
C#
10 lines
263 B
C#
using System.Collections.Generic;
|
|
|
|
namespace LinkToolAddin.host.prompt;
|
|
|
|
public class PromptRequest
|
|
{
|
|
public PromptServer PromptServer { get; set; }
|
|
public string PromptName { get; set; }
|
|
public Dictionary<string, string> PromptArgs { get; set; }
|
|
} |