namespace Marco.Pms.Model.Dtos.Forum { public class ForumAttachmentDto { public Guid Id { get; set; } = Guid.Empty; public Guid TicketId { get; set; } = Guid.Empty; 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; } } }