mirror of
https://github.com/C9Glax/tranga.git
synced 2025-07-01 08:24:17 +02:00
18 lines
577 B
C#
18 lines
577 B
C#
using Microsoft.EntityFrameworkCore.Infrastructure;
|
|
|
|
namespace API.Schema.Jobs;
|
|
|
|
public abstract class JobWithDownloading : Job
|
|
{
|
|
|
|
public JobWithDownloading(string key, JobType jobType, ulong recurrenceMs, Job? parentJob = null, ICollection<Job>? dependsOnJobs = null)
|
|
: base(key, jobType, recurrenceMs, parentJob, dependsOnJobs)
|
|
{
|
|
|
|
}
|
|
public JobWithDownloading(ILazyLoader lazyLoader, string key, JobType jobType, ulong recurrenceMs, string? parentJobId)
|
|
: base(lazyLoader, key, jobType, recurrenceMs, parentJobId)
|
|
{
|
|
|
|
}
|
|
} |