namespace DigitalData.EmailProfiler.Application.Common.Dtos.EmailAttachments; /// /// DTO for EmailAttachment query results. /// public class EmailAttachmentDto { public int Id { get; set; } public string OriginalFileName { get; set; } = string.Empty; public string FilePath { get; set; } = string.Empty; public long FileSize { get; set; } public bool IsEmbeddedFile { get; set; } public string? Status { get; set; } public string? ValidationErrorMessage { get; set; } }