You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Sonarr/frontend/src/EpisodeFile/EpisodeFile.ts

21 lines
540 B

import ModelBase from 'App/ModelBase';
import { QualityModel } from 'Quality/Quality';
import CustomFormat from 'typings/CustomFormat';
import MediaInfo from 'typings/MediaInfo';
export interface EpisodeFile extends ModelBase {
seriesId: number;
seasonNumber: number;
relativePath: string;
path: string;
size: number;
dateAdded: string;
sceneName: string;
releaseGroup: string;
languages: CustomFormat[];
quality: QualityModel;
customFormats: CustomFormat[];
mediaInfo: MediaInfo;
qualityCutoffNotMet: boolean;
}