namespace Galaeth.Services.Configuration;
///
/// Configuration for the email domain blacklist service.
///
public class EmailDomainBlacklistConfiguration
{
///
/// Whether the email domain blacklist should be used.
///
public bool Enabled { get; set; }
///
/// Url of a master list for email address domains to blacklist.
///
public string MasterList { get; set; }
}