Simply3DScan
Places.cs
Go to the documentation of this file.
1 using PostSharp.Patterns.Contracts;
2 namespace Configuration
3 {
7  public class Places
8  {
15  public bool SaveImages { get; set; }
22  public string LastFilePath { get; set; }
29  [Required]
30  public string LogSubPath { get; set; }
37  [Required]
38  public string ImageSubPath { get; set; }
39 
46  public FileFormat FileFormat { get; set; }
47  }
48 }
Path dependend configuration
Definition: Places.cs:7
string LastFilePath
Gets or sets the last file path.
Definition: Places.cs:22
string ImageSubPath
Gets or sets the image sub path.
Definition: Places.cs:38
string LogSubPath
Gets or sets the log sub path.
Definition: Places.cs:30
FileFormat
File output format
Definition: FileFormat.cs:6
bool SaveImages
Gets or sets a value indicating whether [save images].
Definition: Places.cs:15