Files
QuotifyBE/DTOs/CreateQuote.cs
2025-07-15 10:26:33 +02:00

7 lines
217 B
C#

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; }
};