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.
Lidarr/frontend/src/typings/MetadataProfile.ts

40 lines
742 B

interface PrimaryAlbumType {
id?: number;
name?: string;
}
interface SecondaryAlbumType {
id?: number;
name?: string;
}
interface ReleaseStatus {
id?: number;
name?: string;
}
interface ProfilePrimaryAlbumTypeItem {
primaryAlbumType?: PrimaryAlbumType;
allowed: boolean;
}
interface ProfileSecondaryAlbumTypeItem {
secondaryAlbumType?: SecondaryAlbumType;
allowed: boolean;
}
interface ProfileReleaseStatusItem {
releaseStatus?: ReleaseStatus;
allowed: boolean;
}
interface MetadataProfile {
name: string;
primaryAlbumTypes: ProfilePrimaryAlbumTypeItem[];
secondaryAlbumTypes: ProfileSecondaryAlbumTypeItem[];
ReleaseStatuses: ProfileReleaseStatusItem[];
id: number;
}
export default MetadataProfile;