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/interfaces/IRecentlyRequested.ts

20 lines
435 B

import { RequestType } from "./IRequestModel";
export interface IRecentlyRequested {
requestId: number;
userId: string;
username: string;
available: boolean;
tvPartiallyAvailable: boolean;
requestDate: Date;
title: string;
overview: string;
releaseDate: Date;
approved: boolean;
denied: boolean;
mediaId: string;
type: RequestType;
posterPath: string;
background: string;
}