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.

16 lines
367 B

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Text;
namespace Shentun.Utilities
{
internal static class Sex
{
[Description("男")] public const string Male = "M";
[Description("女")] public const string Female = "F";
[Description("未知")] public const string Unknown = "U";
}
}