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

8 lines
186 B
C#
Raw Normal View History

namespace BotSharp.Abstraction.Instructs.Models;
public class CodeInstructContext
{
2025-10-06 15:57:18 +00:00
public string CodeScript { get; set; }
public List<KeyValue> Arguments { get; set; } = [];
}