mirror of
https://github.com/aliasvault/aliasvault.git
synced 2026-03-10 10:52:42 -04:00
25 lines
635 B
C#
25 lines
635 B
C#
//-----------------------------------------------------------------------
|
|
// <copyright file="Gender.cs" company="lanedirt">
|
|
// Copyright (c) lanedirt. All rights reserved.
|
|
// Licensed under the AGPLv3 license. See LICENSE.md file in the project root for full license information.
|
|
// </copyright>
|
|
//-----------------------------------------------------------------------
|
|
|
|
namespace AliasVault.Generators.Identity.Models;
|
|
|
|
/// <summary>
|
|
/// Identity model.
|
|
/// </summary>
|
|
public enum Gender
|
|
{
|
|
/// <summary>
|
|
/// Male gender.
|
|
/// </summary>
|
|
Male,
|
|
|
|
/// <summary>
|
|
/// Female gender.
|
|
/// </summary>
|
|
Female,
|
|
}
|