mirror of
https://github.com/pawelmalak/flame.git
synced 2025-07-19 11:39:36 +02:00
11 lines
208 B
TypeScript
11 lines
208 B
TypeScript
import { Model } from '.';
|
|
|
|
export interface NewBookmark {
|
|
name: string;
|
|
url: string;
|
|
categoryId: number;
|
|
icon: string;
|
|
isPublic: boolean;
|
|
}
|
|
|
|
export interface Bookmark extends Model, NewBookmark {}
|