BotSharp/src/Infrastructure/BotSharp.Abstraction/Instructs/Models/CodeInstructContext.cs

7 lines
143 B
C#
Raw Normal View History

namespace BotSharp.Abstraction.Instructs.Models;
public class CodeInstructContext
{
public List<KeyValue> Arguments { get; set; } = [];
}