mirror of
https://github.com/QuotifyTeam/QuotifyBE.git
synced 2025-12-17 00:00:07 +01:00
10 lines
250 B
C#
10 lines
250 B
C#
public record class RandomQuote
|
|
{
|
|
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();
|
|
|
|
};
|
|
|