Added page and endpoints for managing Tags

This commit is contained in:
2023-02-19 20:51:31 -06:00
parent 1f3adf0932
commit c55b018c0d
27 changed files with 896 additions and 70 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 List<TagSummaryDTO>? Tags { get; set; } = new List<TagSummaryDTO>();
public List<TagDTO>? Tags { get; set; } = new List<TagDTO>();
}
}