namespace QuotifyBE.DTOs; public record class QuoteShortDTO { public int Id { get; set; } public string Text { get; set; } = string.Empty; public string Author { get; set; } = string.Empty; public string? ImageUrl { get; set; } public List Categories { get; set; } = new(); };