namespace DigitalData.EmailProfiler.Application.Common.Dtos; /// /// DTO for EmailProfile query results. /// public class EmailProfileDto { public int Id { get; set; } public string ProfileName { get; set; } = string.Empty; public int EmailAccountId { get; set; } public string? EmailAccountName { get; set; } public int? ProcessId { get; set; } public string? ProcessName { get; set; } public int PollIntervalMinutes { get; set; } public DateTime? LastPollTime { get; set; } public bool IsActive { get; set; } public string? Comment { get; set; } }