Add Spectre, add bookmark container creation, save selected container to localStorage
This commit is contained in:
parent
c5403ca206
commit
3eb2b2ae98
21 changed files with 6014 additions and 57 deletions
|
|
@ -1,6 +1,7 @@
|
|||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
using System.Text.Json.Serialization;
|
||||
|
||||
namespace Start.Shared {
|
||||
public class BookmarkContainerDto {
|
||||
|
|
@ -18,6 +19,7 @@ namespace Start.Shared {
|
|||
this.BookmarkContainerId = bookmarkContainerId;
|
||||
}
|
||||
|
||||
[JsonConstructor]
|
||||
public BookmarkContainerDto(int bookmarkContainerId, string title,
|
||||
IList<BookmarkGroupDto>? bookmarkGroups) : this(bookmarkContainerId, title) {
|
||||
this.BookmarkGroups = bookmarkGroups;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue