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

  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel;
  4. using System.Text;
  5. namespace Shentun.Utilities
  6. {
  7. internal static class Sex
  8. {
  9. [Description("男")] public const string Male = "M";
  10. [Description("女")] public const string Female = "F";
  11. [Description("未知")] public const string Unknown = "U";
  12. }
  13. }