13 lines
297 B
C#
13 lines
297 B
C#
namespace Galaeth.Services.Configuration;
|
|
|
|
/// <summary>
|
|
/// User registration configuration.
|
|
/// </summary>
|
|
public class RegistrationConfiguration
|
|
{
|
|
/// <summary>
|
|
/// Whether email verification should be required.
|
|
/// </summary>
|
|
public bool RequireEmailActivation { get; set; }
|
|
}
|