Add Tag CRUD

This commit is contained in:
Oscar Morales
2025-08-01 11:45:22 -06:00
parent d922768c85
commit 6b0a681942
20 changed files with 791 additions and 1 deletions

View File

@@ -0,0 +1,13 @@
namespace Core.Inventory.External.Clients.Requests
{
public class TagRequest
{
public string TenantId { get; set; } = null!;
public string TagName { get; set; } = null!;
public string TypeId { get; set; } = null!;
public string[] ParentTagId { get; set; } = null!;
public string Slug { get; set; } = null!;
public int DisplayOrder { get; set; }
public string Icon { get; set; } = null!;
}
}