Files
cleanuperr/code/Domain/Models/Arr/Queue/QueueRecord.cs
T
2025-01-15 23:55:34 +02:00

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; }
}