mirror of
https://github.com/pawelmalak/flame.git
synced 2025-07-29 15:49:37 +02:00
15 lines
No EOL
243 B
TypeScript
15 lines
No EOL
243 B
TypeScript
import { Model } from '.';
|
|
|
|
export interface Bookmark extends Model {
|
|
name: string;
|
|
url: string;
|
|
categoryId: number;
|
|
icon: string;
|
|
}
|
|
|
|
export interface NewBookmark {
|
|
name: string;
|
|
url: string;
|
|
categoryId: number;
|
|
icon: string;
|
|
} |