You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
BookingHeChuan/Myshipping.Core/Enum/Gender.cs

28 lines
400 B
C#

using System.ComponentModel;
namespace Myshipping.Core;
/// <summary>
/// 性别
/// </summary>
public enum Gender
{
/// <summary>
/// 男
/// </summary>
[Description("男")]
MALE = 1,
/// <summary>
/// 女
/// </summary>
[Description("女")]
FEMALE = 2,
/// <summary>
/// 未知
/// </summary>
[Description("未知")]
UNKNOWN = 3
}