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

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