Files
QuotifyBE/DTOs/QuoteShortDTO.cs
2025-07-18 12:12:22 +02:00

13 lines
309 B
C#

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<string>? Categories { get; set; } = new();
};