Added front-end ReactApp, with basic CRUD functionality for Bookmark entries

This commit is contained in:
2023-01-28 20:48:32 -06:00
parent 0413abf587
commit 1f3adf0932
61 changed files with 19643 additions and 21 deletions

View File

@ -15,6 +15,6 @@ namespace YABA.Common.DTOs.Bookmarks
public string? Note { get; set; }
public bool IsHidden { get; set; }
public string Url { get; set; }
public IList<TagSummaryDTO> Tags { get; set; } = new List<TagSummaryDTO>();
public List<TagSummaryDTO>? Tags { get; set; } = new List<TagSummaryDTO>();
}
}