Removed Config CopyTo

Rename with Date-Group (Season)
This commit is contained in:
2023-06-23 23:40:24 -07:00
parent 6f22929136
commit b4c1a05869
9 changed files with 101 additions and 130 deletions

View File

@ -8,7 +8,6 @@ public class AppSettings
public string Company { init; get; }
public string ComparePathsFile { init; get; }
public string CopyTo { init; get; }
public int MaxDegreeOfParallelism { init; get; }
public int MaxMinutesDelta { init; get; }
public bool RenameUndo { init; get; }
@ -17,7 +16,6 @@ public class AppSettings
[JsonConstructor]
public AppSettings(string company,
string comparePathsFile,
string copyTo,
int maxDegreeOfParallelism,
int maxMinutesDelta,
bool renameUndo,
@ -25,7 +23,6 @@ public class AppSettings
{
Company = company;
ComparePathsFile = comparePathsFile;
CopyTo = copyTo;
MaxDegreeOfParallelism = maxDegreeOfParallelism;
MaxMinutesDelta = maxMinutesDelta;
RenameUndo = renameUndo;