//----------------------------------------------------------------------- // // Copyright (c) lanedirt. All rights reserved. // Licensed under the MIT license. See LICENSE.md file in the project root for full license information. // //----------------------------------------------------------------------- namespace AliasVault.Generators.Identity.Models; /// /// Identity model. /// public class Identity { /// /// Gets or sets the gender. /// public Gender Gender { get; set; } /// /// Gets or sets the first name. /// public string FirstName { get; set; } = string.Empty; /// /// Gets or sets the last name. /// public string LastName { get; set; } = string.Empty; /// /// Gets or sets the nickname. This is also used as the username. /// public string NickName { get; set; } = string.Empty; /// /// Gets or sets the birth date. /// public DateTime BirthDate { get; set; } /// /// Gets or sets the email address prefix. /// public string EmailPrefix { get; set; } = string.Empty; }