mirror of
https://github.com/Readarr/Readarr
synced 2026-01-17 21:13:38 +01:00
18 lines
363 B
TypeScript
18 lines
363 B
TypeScript
import ModelBase from 'App/ModelBase';
|
|
|
|
interface Author extends ModelBase {
|
|
added: string;
|
|
genres: string[];
|
|
monitored: boolean;
|
|
overview: string;
|
|
path: string;
|
|
qualityProfileId: number;
|
|
metadataProfileId: number;
|
|
rootFolderPath: string;
|
|
sortName: string;
|
|
tags: number[];
|
|
authorName: string;
|
|
isSaving?: boolean;
|
|
}
|
|
|
|
export default Author;
|