27 lines
812 B
C#
27 lines
812 B
C#
namespace Domain.Models.Arr.Queue;
|
|
|
|
public sealed record QueueRecord
|
|
{
|
|
// Sonarr
|
|
public long SeriesId { get; init; }
|
|
public long EpisodeId { get; init; }
|
|
public long SeasonNumber { get; init; }
|
|
|
|
// Radarr
|
|
public long MovieId { get; init; }
|
|
|
|
// Lidarr
|
|
public long ArtistId { get; init; }
|
|
|
|
public long AlbumId { get; init; }
|
|
|
|
// common
|
|
public required string Title { get; init; }
|
|
public string Status { get; init; }
|
|
public string TrackedDownloadStatus { get; init; }
|
|
public string TrackedDownloadState { get; init; }
|
|
public List<TrackedDownloadStatusMessage>? StatusMessages { get; init; }
|
|
public required string DownloadId { get; init; }
|
|
public required string Protocol { get; init; }
|
|
public required long Id { get; init; }
|
|
} |