galaeth-draft/Galaeth.Services/Configuration/EmailDomainBlacklistConfiguration.cs

18 lines
465 B
C#
Raw Normal View History

2024-11-17 10:31:01 +01:00
namespace Galaeth.Services.Configuration;
/// <summary>
/// Configuration for the email domain blacklist service.
/// </summary>
public class EmailDomainBlacklistConfiguration
{
/// <summary>
/// Whether the email domain blacklist should be used.
/// </summary>
public bool Enabled { get; set; }
/// <summary>
/// Url of a master list for email address domains to blacklist.
/// </summary>
public string MasterList { get; set; }
}