// ========================================================================== // MyIdentityOptions.cs // Squidex Headless CMS // ========================================================================== // Copyright (c) Squidex Group // All rights reserved. // ========================================================================== namespace Squidex.Config.Identity { public sealed class MyIdentityOptions { public string DefaultUsername { get; set; } public string DefaultPassword { get; set; } public string GoogleClient { get; set; } public string GoogleSecret { get; set; } public bool RequiresHttps { get; set; } public bool LockAutomatically { get; set; } } }