13 lines
361 B
TypeScript
13 lines
361 B
TypeScript
import { LibraryType } from "./library/library";
|
|
|
|
export interface RecentlyAddedItem {
|
|
seriesId: number;
|
|
seriesName: string;
|
|
created: string;
|
|
title: string;
|
|
libraryId: number;
|
|
libraryType: LibraryType;
|
|
volumeId: number;
|
|
chapterId: number;
|
|
id: number; // This is UI only, sent from backend but has no relation to any entity
|
|
}
|