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

@ -47,7 +47,7 @@ public abstract class Job
/// <summary>
/// EF ONLY!!!
/// </summary>
protected Job(string jobId, JobType jobType, ulong recurrenceMs, string? parentJobId)
protected internal Job(string jobId, JobType jobType, ulong recurrenceMs, string? parentJobId)
{
this.JobId = jobId;
this.JobType = jobType;