using MediatR;
namespace DigitalData.EmailProfiler.Application.Features.EmailProfiles.Commands;
///
/// Command to create a new email profile.
///
public record CreateEmailProfileCommand : IRequest
{
public string ProfileName { get; init; } = string.Empty;
public int EmailAccountId { get; init; }
public int? ProcessId { get; init; }
public string? ValidationSql { get; init; }
public int PollIntervalMinutes { get; init; } = 15;
public bool IsActive { get; init; } = true;
}