JellyGlass/frontend/app/Models/Item.ts

15 lines
No EOL
221 B
TypeScript

import type Library from "./Library";
export default interface Item {
name: string;
id: string;
library?: Library;
servers: Array<string>;
type: ItemType;
}
export enum ItemType {
Movie,
TvShow,
Music,
}