mirror of
https://github.com/pawelmalak/flame.git
synced 2026-03-09 22:13:12 +08:00
12 lines
212 B
TypeScript
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;
|
|
} |