f35abdefe5
* added Sonarr search type option * updated test data * fixed duplicated Sonarr search items when using search type Season * added enhanced logging option along with Sonarr and Radarr enhanced logs * switched to ghcr.io
16 lines
564 B
C#
16 lines
564 B
C#
namespace Domain.Arr.Queue;
|
|
|
|
public record QueueRecord
|
|
{
|
|
public int SeriesId { get; init; }
|
|
public int EpisodeId { get; init; }
|
|
public int SeasonNumber { 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; }
|
|
} |