diff options
Diffstat (limited to 'CommandLineWrapper/JsonResults/Implements/SheetAlignTasksResult.cs')
| -rw-r--r-- | CommandLineWrapper/JsonResults/Implements/SheetAlignTasksResult.cs | 9 |
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 |
