mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2026-09-13 19:33:37 +00:00
9 lines
347 B
C#
9 lines
347 B
C#
namespace AIStudio.Tools.ToolCallingSystem;
|
|
|
|
/// <summary>
|
|
/// Lua to copy, or an explanation of why the export failed. An empty successful export has nothing to copy.
|
|
/// </summary>
|
|
public sealed record ToolSettingsExportResult(string LuaCode = "", string ErrorMessage = "")
|
|
{
|
|
public bool Success => string.IsNullOrEmpty(this.ErrorMessage);
|
|
} |