BotSharp/src/Infrastructure/BotSharp.Abstraction/Instructs/Models/CodeInstructContext.cs
2025-10-06 10:57:18 -05:00

8 lines
186 B
C#

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