old_flsystem/应用/UserFission/Control_/Enums.cs

24 lines
378 B
C#
Raw Permalink Normal View History

2022-09-20 03:10:29 +00:00
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
}
}
}