edycja naprawiona

This commit is contained in:
2025-07-18 12:12:22 +02:00
parent 908a56665d
commit 7d20e4d4f9
2 changed files with 85 additions and 2 deletions

View File

@@ -6,7 +6,7 @@ public record class QuoteShortDTO
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();
public List<string>? Categories { get; set; } = new();
};