summaryrefslogtreecommitdiff
path: root/CommandLineWrapper/JsonResults/Implements/SheetAlignTasksResult.cs
diff options
context:
space:
mode:
author魏曹先生 <1992414357@qq.com>2026-01-13 08:22:09 +0800
committer魏曹先生 <1992414357@qq.com>2026-01-13 08:22:09 +0800
commit5d8b29664c13e6e5c6292d79973980182ece1441 (patch)
treeced2f67c82ce0748dbd0090f0fde6b921329d259 /CommandLineWrapper/JsonResults/Implements/SheetAlignTasksResult.cs
parent7d59c15b0efd2aa5a27aef356a265f850a2e7e2f (diff)
Add data loading from wrapper to view modelHEADmain
Diffstat (limited to 'CommandLineWrapper/JsonResults/Implements/SheetAlignTasksResult.cs')
-rw-r--r--CommandLineWrapper/JsonResults/Implements/SheetAlignTasksResult.cs9
1 files changed, 4 insertions, 5 deletions
diff --git a/CommandLineWrapper/JsonResults/Implements/SheetAlignTasksResult.cs b/CommandLineWrapper/JsonResults/Implements/SheetAlignTasksResult.cs
index 5539d19..60d07f3 100644
--- a/CommandLineWrapper/JsonResults/Implements/SheetAlignTasksResult.cs
+++ b/CommandLineWrapper/JsonResults/Implements/SheetAlignTasksResult.cs
@@ -1,13 +1,12 @@
-using CommandLineWrapper;
-using CommandLineWrapper.JsonResults;
+namespace CommandLineWrapper.JsonResults.Implements;
-public class SheetAlignTasksResultGetter : JsonResultGetter<AlignJsonResult>
+public class SheetAlignTasksResultGetter : JsonResultGetter<AlignResult>
{
protected override Task<JVCSCommandInvoker.InvokeResult> ExecCommand(JVCSWorkspace workspace)
=> workspace.SheetAlignList();
}
-public struct AlignJsonResult
+public struct AlignResult
{
public Dictionary<string, AlignTaskMapping> AlignTasks { get; set; }
}
@@ -16,4 +15,4 @@ public struct AlignTaskMapping
{
public string LocalMapping { get; set; }
public string RemoteMapping { get; set; }
-}
+} \ No newline at end of file