Bookmarks Form

This commit is contained in:
unknown
2021-05-24 11:51:05 +02:00
parent 4e89e4c568
commit 38edb76929
5 changed files with 189 additions and 8 deletions

View File

@@ -4,4 +4,10 @@ export interface Bookmark extends Model {
name: string;
url: string;
categoryId: number;
}
export interface NewBookmark {
name: string;
url: string;
categoryId: number;
}