-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCommandLineArgs.cs
45 lines (29 loc) · 1.05 KB
/
CommandLineArgs.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ExtractFaces
{
internal class CommandLineArgs
{
public bool ShowExif { get; set; } = false;
public bool ShowXmp { get; set; } = false;
public bool WaitKeystrokeToEnd { get; set; } = false;
public bool Flush { get; set; } = false;
public bool Square { get; set; } = false;
public bool Recursive { get; set; } = false;
public bool Verbose { get; set; } = false;
public int DestinationFilePrefix { get; set; } = 0;
public int MinWidth { get; set; } = -1;
public int MinHeight { get; set; } = -1;
public string Source { get; set; } = null;
public string Destination { get; set; } = null;
public HashSet<string> Persons { get; set; } = null;
public List<int> Percents { get; set; } = null;
public int TakeDestinationFilePrefix()
{
return DestinationFilePrefix++;
}
}
}