feat: basic category controller (create & retrieve)

This commit is contained in:
2025-07-18 11:09:27 +02:00
parent 0a6633316c
commit b20b7d9127
3 changed files with 136 additions and 0 deletions

6
DTOs/NewCategoryDTO.cs Normal file
View File

@@ -0,0 +1,6 @@
namespace QuotifyBE.DTOs;
public class NewCategoryDTO
{
public string Name { get; set; } = string.Empty;
public string? Description { get; set; }
}