e0a6c7842b
* refactored code added deluge support added transmission support added content blocker added blacklist and whitelist * increased level on some logs; updated test docker compose; updated dev appsettings * updated docker compose and readme * moved some logs * fixed env var typo; fixed sonarr and radarr default download client
15 lines
521 B
C#
15 lines
521 B
C#
namespace Domain.Arr.Queue;
|
|
|
|
public record QueueRecord
|
|
{
|
|
public int SeriesId { get; init; }
|
|
public int EpisodeId { get; init; }
|
|
public int MovieId { get; init; }
|
|
public required string Title { get; init; }
|
|
public string Status { get; init; }
|
|
public string TrackedDownloadStatus { get; init; }
|
|
public string TrackedDownloadState { get; init; }
|
|
public required string DownloadId { get; init; }
|
|
public required string Protocol { get; init; }
|
|
public required int Id { get; init; }
|
|
} |