Updated issues with querying getting all bookmarks and updating bookmark tags

This commit is contained in:
Carl Tibule
2023-01-28 13:23:46 -06:00
parent 1ca6b63af3
commit 22f5764589
4 changed files with 34 additions and 35 deletions

View File

@ -0,0 +1,7 @@
namespace YABA.API.ViewModels
{
public class UpdateBookmarkTagRequest
{
public List<string> Tags { get; set; }
}
}