blob: 5539d19f74d80dd9c6773d8c8ce480110c7f6aea (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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; }
}
|