mirror of
https://github.com/C9Glax/tranga.git
synced 2025-02-23 15:50:13 +01:00
17 lines
637 B
C#
17 lines
637 B
C#
using System.ComponentModel.DataAnnotations;
|
|
using API.Schema.MangaConnectors;
|
|
|
|
namespace API.Schema.Jobs;
|
|
|
|
public class UpdateMetadataJob(ulong recurrenceMs, string mangaId, string? parentJobId = null, ICollection<string>? dependsOnJobsIds = null)
|
|
: Job(TokenGen.CreateToken(typeof(UpdateMetadataJob)), JobType.UpdateMetaDataJob, recurrenceMs, parentJobId, dependsOnJobsIds)
|
|
{
|
|
[MaxLength(64)]
|
|
public string MangaId { get; init; } = mangaId;
|
|
public virtual Manga Manga { get; init; }
|
|
|
|
protected override IEnumerable<Job> RunInternal(PgsqlContext context)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
} |