添加项目文件。
This commit is contained in:
29
common/Tnb.Common/Enums/Gender.cs
Normal file
29
common/Tnb.Common/Enums/Gender.cs
Normal file
@@ -0,0 +1,29 @@
|
||||
using JNPF.DependencyInjection;
|
||||
using System.ComponentModel;
|
||||
|
||||
namespace JNPF.Common.Enums;
|
||||
|
||||
/// <summary>
|
||||
/// 性别.
|
||||
/// </summary>
|
||||
[SuppressSniffer]
|
||||
public enum Gender
|
||||
{
|
||||
/// <summary>
|
||||
/// 男.
|
||||
/// </summary>
|
||||
[Description("男")]
|
||||
MALE = 1,
|
||||
|
||||
/// <summary>
|
||||
/// 女.
|
||||
/// </summary>
|
||||
[Description("女")]
|
||||
FEMALE = 2,
|
||||
|
||||
/// <summary>
|
||||
/// 未知.
|
||||
/// </summary>
|
||||
[Description("未知")]
|
||||
UNKNOWN = 3
|
||||
}
|
||||
Reference in New Issue
Block a user