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/media-details/components/shared/interfaces/interfaces.ts

15 lines
324 B

import { RequestType } from "../../../../interfaces";
export interface IDenyDialogData {
requestType: RequestType;
requestId: number;
denied: boolean;
}
export interface IIssueDialogData {
requestType: RequestType;
requestId: number;
providerId: string;
title: string;
posterPath: string;
}