mirror of
https://github.com/QuotifyTeam/QuotifyBE.git
synced 2025-12-16 19:00:07 +01:00
chore: migrate to new category structure
This commit is contained in:
9
DTOs/CategoryShortDTO.cs
Normal file
9
DTOs/CategoryShortDTO.cs
Normal 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;
|
||||
|
||||
};
|
||||
Reference in New Issue
Block a user