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

@ -19,7 +19,7 @@ public class UpdateFilesDownloadedJob : Job
/// <summary>
/// EF ONLY!!!
/// </summary>
public UpdateFilesDownloadedJob(string mangaId, ulong recurrenceMs, string? parentJobId = null)
internal UpdateFilesDownloadedJob(string mangaId, ulong recurrenceMs, string? parentJobId)
: base(TokenGen.CreateToken(typeof(UpdateFilesDownloadedJob)), JobType.UpdateFilesDownloadedJob, recurrenceMs, parentJobId)
{
this.MangaId = mangaId;