using JNPF.DependencyInjection;
using System.ComponentModel;
namespace JNPF.Common.Enums;
///
/// 性别.
///
[SuppressSniffer]
public enum Gender
{
///
/// 男.
///
[Description("男")]
MALE = 1,
///
/// 女.
///
[Description("女")]
FEMALE = 2,
///
/// 未知.
///
[Description("未知")]
UNKNOWN = 3
}