//
// Copyright (c) alveus.dev. All rights reserved. Licensed under the MIT License.
//
namespace Astral.Services.Options;
///
/// User registration configuration.
///
public class RegistrationOptions
{
///
/// Whether email verification should be required.
///
public bool RequireEmailActivation { get; set; }
///
/// Default profile hero image url.
///
public string DefaultHeroImageUrl { get; set; }
///
/// Default thumbnail image url.
///
public string DefaultThumbnailImageUrl { get; set; }
}