mirror of
https://github.com/QuotifyTeam/QuotifyBE.git
synced 2025-12-16 16:00:06 +01:00
13 lines
308 B
C#
13 lines
308 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();
|
|
|
|
};
|
|
|