kontroler - dodawanie cytatow

This commit is contained in:
2025-07-15 10:26:33 +02:00
parent 5e2e70b415
commit a92f34c725
3 changed files with 99 additions and 33 deletions

7
DTOs/CreateQuote.cs Normal file
View File

@@ -0,0 +1,7 @@
public record class CreateQuoteRequest
{
public string Text { get; set; }
public string Author { get; set; }
public List<int> CategoryIds { get; set; }
public string? ImageUrl { get; set; }
};