using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Text;
namespace Shentun.Peis.Enums
{
///
/// 性别枚举 M-男,F-女,U-未知
///
public static class SexFlag
{
///
/// 男
///
[Description("男")]
public const string Male = "M";
///
/// 女
///
[Description("女")]
public const string Female = "F";
///
/// 未知
///
[Description("未知")]
public const string UnKnown = "U";
}
}