26 lines
711 B
C#
26 lines
711 B
C#
// <copyright file="RegistrationOptions.cs" company="alveus.dev">
|
|
// Copyright (c) alveus.dev. All rights reserved. Licensed under the MIT License.
|
|
// </copyright>
|
|
|
|
namespace Astral.Services.Options;
|
|
|
|
/// <summary>
|
|
/// User registration configuration.
|
|
/// </summary>
|
|
public class RegistrationOptions
|
|
{
|
|
/// <summary>
|
|
/// Whether email verification should be required.
|
|
/// </summary>
|
|
public bool RequireEmailActivation { get; set; }
|
|
|
|
/// <summary>
|
|
/// Default profile hero image url.
|
|
/// </summary>
|
|
public string DefaultHeroImageUrl { get; set; }
|
|
|
|
/// <summary>
|
|
/// Default thumbnail image url.
|
|
/// </summary>
|
|
public string DefaultThumbnailImageUrl { get; set; }
|
|
}
|