mirror of
https://github.com/QuotifyTeam/QuotifyBE.git
synced 2025-12-16 23:20:06 +01:00
feat: return creation/update time
This commit is contained in:
14
DTOs/QuoteCompleteDTO.cs
Normal file
14
DTOs/QuoteCompleteDTO.cs
Normal file
@@ -0,0 +1,14 @@
|
||||
namespace QuotifyBE.DTOs;
|
||||
|
||||
public record class QuoteCompleteDTO
|
||||
{
|
||||
public int Id { get; set; }
|
||||
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 DateTime? createDate { get; set; }
|
||||
public DateTime? updateDate { get; set; }
|
||||
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user