losowanie cytatow

This commit is contained in:
2025-07-15 12:24:09 +02:00
parent a92f34c725
commit ae7f0216e2
2 changed files with 72 additions and 0 deletions

9
DTOs/RandomQuote.cs Normal file
View File

@@ -0,0 +1,9 @@
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();
};