Files
QuotifyBE/DTOs/CreateQuoteDTO.cs
2025-07-17 10:55:38 +02:00

8 lines
206 B
C#

public record class CreateQuoteDTO
{
public string Text { get; set; }
public string Author { get; set; }
public List<int>? CategoryIds { get; set; }
public string? ImageUrl { get; set; }
};