chore: migrate to new category structure

This commit is contained in:
2025-07-18 11:08:00 +02:00
parent af233d9ee9
commit 0a6633316c
5 changed files with 267 additions and 2 deletions

9
DTOs/CategoryShortDTO.cs Normal file
View File

@@ -0,0 +1,9 @@
namespace QuotifyBE.DTOs;
public record class CategoryShortDTO
{
public int Id { get; set; }
public string Name { get; set; } = string.Empty;
public string? Description { get; set; }
public DateTime? CreatedAt { get; set; } = DateTime.UtcNow;
};