1
0
Fork 0
mirror of https://github.com/pawelmalak/flame.git synced 2025-07-20 20:19:35 +02:00
flame/client/src/interfaces/Bookmark.ts

12 lines
208 B
TypeScript
Raw Normal View History

import { Model } from '.';
export interface NewBookmark {
name: string;
url: string;
categoryId: number;
icon: string;
isPublic: boolean;
2021-05-24 11:51:05 +02:00
}
export interface Bookmark extends Model, NewBookmark {}