public record class CreateQuoteDTO { public string Text { get; set; } public string Author { get; set; } public List? CategoryIds { get; set; } public string? ImageUrl { get; set; } };