mirror of
https://github.com/QuotifyTeam/QuotifyBE.git
synced 2025-12-16 11:00:06 +01:00
8 lines
206 B
C#
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; }
|
|
};
|