Remove unnecessary default value for EF Constructors

This commit is contained in:
2025-05-09 12:30:30 +02:00
parent b49b11828c
commit 0f6c060026
8 changed files with 9 additions and 9 deletions

View File

@ -21,7 +21,7 @@ public class MoveFileOrFolderJob : Job
/// <summary>
/// EF ONLY!!!
/// </summary>
public MoveFileOrFolderJob(string jobId, string fromLocation, string toLocation, string? parentJobId = null)
internal MoveFileOrFolderJob(string jobId, string fromLocation, string toLocation, string? parentJobId)
: base(jobId, JobType.MoveFileOrFolderJob, 0, parentJobId)
{
this.FromLocation = fromLocation;