Files
flame/client/src/interfaces/Category.ts

12 lines
212 B
TypeScript

import { Model, Bookmark } from '.';
export interface Category extends Model {
name: string;
isPinned: boolean;
orderId: number;
bookmarks: Bookmark[];
}
export interface NewCategory {
name: string;
}