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.
19 lines
456 B
19 lines
456 B
import { RadarrProfile, RadarrRootFolder } from '../../api/radarr';
|
|
|
|
export interface ServiceCommonServer {
|
|
id: number;
|
|
name: string;
|
|
is4k: boolean;
|
|
isDefault: boolean;
|
|
activeProfileId: number;
|
|
activeDirectory: string;
|
|
activeAnimeProfileId?: number;
|
|
activeAnimeDirectory?: string;
|
|
}
|
|
|
|
export interface ServiceCommonServerWithDetails {
|
|
server: ServiceCommonServer;
|
|
profiles: RadarrProfile[];
|
|
rootFolders: Partial<RadarrRootFolder>[];
|
|
}
|