//----------------------------------------------------------------------- // // Copyright (c) lanedirt. All rights reserved. // Licensed under the AGPLv3 license. See LICENSE.md file in the project root for full license information. // //----------------------------------------------------------------------- namespace AliasVault.Shared.Models.WebApi.Auth; /// /// Auth start model using SRP (Secure Remote Password) protocol. /// public class AuthStartModel { /// /// Initializes a new instance of the class. /// /// Email. public AuthStartModel(string email) { this.Email = email; } /// /// Gets or sets the email. /// public string Email { get; set; } }