18 lines
465 B
C#
18 lines
465 B
C#
|
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; }
|
||
|
}
|