mirror of
https://github.com/pawelmalak/flame.git
synced 2025-07-24 13:39:35 +02:00
12 lines
No EOL
212 B
TypeScript
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;
|
|
} |