You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
659 B
29 lines
659 B
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel;
|
|
using System.Text;
|
|
|
|
namespace Shentun.Peis.Enums
|
|
{
|
|
/// <summary>
|
|
/// 性别枚举 M-男,F-女,U-未知
|
|
/// </summary>
|
|
public static class SexFlag
|
|
{
|
|
/// <summary>
|
|
/// 男
|
|
/// </summary>
|
|
[Description("男")]
|
|
public const string Male = "M";
|
|
/// <summary>
|
|
/// 女
|
|
/// </summary>
|
|
[Description("女")]
|
|
public const string Female = "F";
|
|
/// <summary>
|
|
/// 未知
|
|
/// </summary>
|
|
[Description("未知")]
|
|
public const string UnKnown = "U";
|
|
}
|
|
}
|