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? StatusMessages { get; init; } public required string DownloadId { get; init; } public required string Protocol { get; init; } public required long Id { get; init; } }