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

@ -0,0 +1,7 @@
namespace YABA.API.ViewModels.Tags
{
public class DeleteTagsRequest
{
public IEnumerable<int> Ids { get; set; }
}
}

View File

@ -0,0 +1,7 @@
namespace YABA.API.ViewModels.Tags
{
public class HideTagsRequest
{
public IEnumerable<int> Ids { get; set; }
}
}

View File

@ -4,5 +4,6 @@
{
public int Id { get; set; }
public string Name { get; set; }
public bool IsHidden { get; set; }
}
}