mirror of
https://github.com/pawelmalak/flame.git
synced 2025-07-21 12:29:36 +02:00
7 lines
124 B
TypeScript
7 lines
124 B
TypeScript
|
import { Model } from '.';
|
||
|
|
||
|
export interface Bookmark extends Model {
|
||
|
name: string;
|
||
|
url: string;
|
||
|
categoryId: number;
|
||
|
}
|