24 lines
378 B
C#
24 lines
378 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace UserFission.Control_
|
|||
|
{
|
|||
|
public class Enums
|
|||
|
{
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 性别枚举
|
|||
|
/// </summary>
|
|||
|
public enum GenderType
|
|||
|
{
|
|||
|
男 = 1,
|
|||
|
女 = 2,
|
|||
|
未知 = 3
|
|||
|
}
|
|||
|
|
|||
|
}
|
|||
|
}
|