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.
Prowlarr/frontend/src/typings/Application.ts

20 lines
395 B

import ModelBase from 'App/ModelBase';
export enum ApplicationSyncLevel {
Disabled = 'disabled',
AddOnly = 'addOnly',
FullSync = 'fullSync',
}
interface Application extends ModelBase {
name: string;
syncLevel: ApplicationSyncLevel;
implementationName: string;
implementation: string;
configContract: string;
infoLink: string;
tags: number[];
}
export default Application;