Preserve current state before big refactor

This commit is contained in:
2025-02-05 20:45:49 -08:00
parent 4910ff7770
commit badc6d2375
65 changed files with 2356 additions and 113 deletions

View File

@@ -0,0 +1,13 @@
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;
}