Exemplo n.º 1
0
 public OpenResponse(DTOBase currentWorkingDirectory, FullPath fullPath)
     : base(currentWorkingDirectory)
 {
     Options = new Options(fullPath);
     _files.Add(currentWorkingDirectory);
 }
Exemplo n.º 2
0
 public InitResponse(DTOBase currentWorkingDirectory, Options options)
     : base(currentWorkingDirectory)
 {
     Options = options;
 }
Exemplo n.º 3
0
 public InitResponse(DTOBase currentWorkingDirectory)
     : base(currentWorkingDirectory)
 {
     Options = new Options();
 }