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.
Ombi/src/Ombi/ClientApp/app/interfaces/ICouchPotato.ts

26 lines
486 B

export interface ICouchPotatoProfiles {
success: boolean;
list: IProfileList[];
}
export interface IProfileList {
core: boolean;
hide: boolean;
_rev: string;
finish: boolean[];
qualities: string[];
_id: string;
_t: string;
label: string;
minimum_score: number;
stop_after: number[];
wait_for: object[];
order: number;
threeD: object[];
}
export interface ICouchPotatoApiKey {
success: boolean;
api_key: string;
}