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/src/app/discover/interfaces.ts

31 lines
549 B

import { RequestType } from "../interfaces";
export interface IDiscoverCardResult {
id: number | string;
posterPath: string;
url: string | undefined;
title: string;
type: RequestType;
available: boolean;
approved: boolean;
denied: boolean;
requested: boolean;
rating: number;
overview: string;
imdbid: string;
background: string|any;
tvMovieDb?: boolean;
}
export enum DiscoverOption {
Combined = 1,
Movie = 2,
Tv = 3
}
export enum DisplayOption {
Card = 1,
List = 2
}