MoveTo => CopyTo

This commit is contained in:
2023-06-12 14:10:21 -07:00
parent 1712de2952
commit 91f32138a1
4 changed files with 14 additions and 14 deletions

View File

@ -11,7 +11,7 @@ public class AppSettings
public string Company { get; set; }
public int? MaxDegreeOfParallelism { get; set; }
public int? MaxValue { get; set; }
public string MoveTo { get; set; }
public string CopyTo { get; set; }
public string WorkingDirectoryName { get; set; }
#nullable restore
@ -31,9 +31,9 @@ public class AppSettings
throw new NullReferenceException(nameof(appSettings.MaxValue));
result = new(
appSettings.Company,
appSettings.CopyTo,
appSettings.MaxDegreeOfParallelism.Value,
appSettings.MaxValue.Value,
appSettings.MoveTo,
appSettings.WorkingDirectoryName
);
return result;