mirror of
https://github.com/Cleanuparr/Cleanuparr.git
synced 2026-02-01 01:21:58 -05:00
28 lines
693 B
C#
28 lines
693 B
C#
namespace Domain.Sonarr.Queue;
|
|
|
|
public record Record(
|
|
int SeriesId,
|
|
int EpisodeId,
|
|
int SeasonNumber,
|
|
IReadOnlyList<Language> Languages,
|
|
IReadOnlyList<CustomFormat> CustomFormats,
|
|
int CustomFormatScore,
|
|
long Size,
|
|
string Title,
|
|
long Sizeleft,
|
|
string Timeleft,
|
|
DateTime EstimatedCompletionTime,
|
|
DateTime Added,
|
|
string Status,
|
|
string TrackedDownloadStatus,
|
|
string TrackedDownloadState,
|
|
IReadOnlyList<StatusMessage> StatusMessages,
|
|
string DownloadId,
|
|
string Protocol,
|
|
string DownloadClient,
|
|
bool DownloadClientHasPostImportCategory,
|
|
string Indexer,
|
|
string OutputPath,
|
|
bool EpisodeHasFile,
|
|
int Id
|
|
); |