mirror of
https://github.com/pawelmalak/flame.git
synced 2026-03-05 20:13:11 +08:00
14 lines
228 B
TypeScript
14 lines
228 B
TypeScript
import { Model } from '.';
|
|
|
|
export interface NewBookmark {
|
|
name: string;
|
|
url: string;
|
|
categoryId: number;
|
|
icon: string;
|
|
isPublic: boolean;
|
|
}
|
|
|
|
export interface Bookmark extends Model, NewBookmark {
|
|
orderId: number;
|
|
}
|