13 lines
324 B
C#
13 lines
324 B
C#
public class SettingsFile
|
|
{
|
|
public enum UploadMethods
|
|
{
|
|
Differential,
|
|
Incremental,
|
|
CleanReplace
|
|
}
|
|
|
|
public string BuildPath { get; set; } = "";
|
|
public string StartParameters { get; set; } = "";
|
|
public UploadMethods UploadMethod { get; set; } = UploadMethods.Differential;
|
|
} |