mirror of
https://github.com/QuotifyTeam/QuotifyBE.git
synced 2025-12-16 19:00:07 +01:00
10 lines
263 B
C#
10 lines
263 B
C#
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;
|
|
|
|
};
|