Add TagType CRUD

This commit is contained in:
Oscar Morales
2025-07-31 19:07:40 -06:00
parent 542df8a203
commit e6d68f4fd3
18 changed files with 646 additions and 1 deletions

View File

@@ -0,0 +1,10 @@
namespace Core.Inventory.External.Clients.Requests
{
public class TagTypeRequest
{
public string TenantId { get; set; } = null!;
public string TypeName { get; set; } = null!;
public int Level { get; set; }
public string ParentTypeId { get; set; } = null!;
}
}