29 lines
510 B
C#
29 lines
510 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Yi.Framework.Rbac.Domain.Shared.Enums
|
|
{
|
|
/// <summary>
|
|
/// 性别
|
|
/// </summary>
|
|
public enum SexEnum
|
|
{
|
|
/// <summary>
|
|
/// 男性
|
|
/// </summary>
|
|
Male = 0,
|
|
/// <summary>
|
|
/// 女性
|
|
/// </summary>
|
|
Woman = 1,
|
|
/// <summary>
|
|
/// 未知
|
|
/// </summary>
|
|
Unknown = 2
|
|
|
|
}
|
|
}
|