14 lines
441 B
C#
14 lines
441 B
C#
namespace Marco.Pms.Model.Dtos.Forum
|
|
{
|
|
public class ForumAttachmentDto
|
|
{
|
|
public Guid? TicketId { get; set; }
|
|
public Guid? CommentId { get; set; }
|
|
public string FileName { get; set; } = string.Empty;
|
|
public string? Base64Data { get; set; }
|
|
public int FileSize { get; set; }
|
|
public string ContentType { get; set; } = string.Empty;
|
|
public DateTime SentAt { get; set; }
|
|
}
|
|
}
|