//
// Copyright (c) alveus.dev. All rights reserved. Licensed under the MIT License.
//
namespace Astral.Services.Options;
///
/// Configuration for the email domain blacklist service.
///
public class EmailDomainBlacklistOptions
{
///
/// 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; }
}