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.
32 lines
590 B
C#
32 lines
590 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel;
|
|
using System.Text;
|
|
|
|
namespace SwaggerStudy.Models
|
|
{
|
|
/// <summary>
|
|
/// 性别枚举
|
|
/// </summary>
|
|
public enum GenderEnum
|
|
{
|
|
/// <summary>
|
|
/// 女性
|
|
/// </summary>
|
|
[Description("女")]
|
|
Female=0,
|
|
|
|
/// <summary>
|
|
/// 男性
|
|
/// </summary>
|
|
[Description("男")]
|
|
Male=1,
|
|
|
|
/// <summary>
|
|
/// 保密
|
|
/// </summary>
|
|
[Description("保密")]
|
|
Secrecy=3,
|
|
}
|
|
}
|