1
0
Fork 0
mirror of https://github.com/pawelmalak/flame.git synced 2025-07-27 14:59:37 +02:00
flame/client/src/interfaces/Category.ts

11 lines
193 B
TypeScript
Raw Normal View History

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