diff options
| author | 魏曹先生 <1992414357@qq.com> | 2026-01-13 06:24:07 +0800 |
|---|---|---|
| committer | 魏曹先生 <1992414357@qq.com> | 2026-01-13 06:24:07 +0800 |
| commit | 7d59c15b0efd2aa5a27aef356a265f850a2e7e2f (patch) | |
| tree | 16f30ff5a7d5d871f0358f792988f369cc532b45 /CommandLineWrapper/JsonResults/Implements/SheetAlignTasksResult.cs | |
| parent | b202287c51438d64f769dd72c579664493ba9109 (diff) | |
Add JSON result getters for command outputs
Diffstat (limited to 'CommandLineWrapper/JsonResults/Implements/SheetAlignTasksResult.cs')
| -rw-r--r-- | CommandLineWrapper/JsonResults/Implements/SheetAlignTasksResult.cs | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/CommandLineWrapper/JsonResults/Implements/SheetAlignTasksResult.cs b/CommandLineWrapper/JsonResults/Implements/SheetAlignTasksResult.cs new file mode 100644 index 0000000..5539d19 --- /dev/null +++ b/CommandLineWrapper/JsonResults/Implements/SheetAlignTasksResult.cs @@ -0,0 +1,19 @@ +using CommandLineWrapper; +using CommandLineWrapper.JsonResults; + +public class SheetAlignTasksResultGetter : JsonResultGetter<AlignJsonResult> +{ + protected override Task<JVCSCommandInvoker.InvokeResult> ExecCommand(JVCSWorkspace workspace) + => workspace.SheetAlignList(); +} + +public struct AlignJsonResult +{ + public Dictionary<string, AlignTaskMapping> AlignTasks { get; set; } +} + +public struct AlignTaskMapping +{ + public string LocalMapping { get; set; } + public string RemoteMapping { get; set; } +} |
