1
0
Fork 0
mirror of https://github.com/pawelmalak/flame.git synced 2025-07-24 13:39:35 +02:00
flame/client/src/interfaces/Category.ts

12 lines
No EOL
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;
}