AR Design
UBC EML collab with UBC SALA - visualizing IoT data in AR
CopyDirectoryInfo.cs
Go to the documentation of this file.
1 // Copyright (c) Microsoft Corporation. All rights reserved.
2 // Licensed under the MIT License. See LICENSE in the project root for license information.
3 
4 namespace HoloToolkit.Unity
5 {
6  public class CopyDirectoryInfo
7  {
8  public string Source { get; set; }
9  public string Destination { get; set; }
10  public string Filter { get; set; }
11  public bool Recursive { get; set; }
12 
14  {
15  Source = null;
16  Destination = null;
17  Filter = "*";
18  Recursive = false;
19  }
20  }
21 }