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.
BookingHeChuan/Myshipping.Core/Enum/LoginType.cs

40 lines
652 B
C#

2 years ago
using System.ComponentModel;
namespace Myshipping.Core;
2 years ago
/// <summary>
/// 登录类型
2 years ago
/// </summary>
public enum LoginType
{
/// <summary>
/// 登录
2 years ago
/// </summary>
[Description("登录")]
2 years ago
LOGIN = 0,
/// <summary>
/// 登出
/// </summary>
[Description("登出")]
LOGOUT = 1,
/// <summary>
/// 注册
/// </summary>
[Description("注册")]
REGISTER = 2,
/// <summary>
/// 改密
/// </summary>
[Description("改密")]
CHANGEPASSWORD = 3,
/// <summary>
/// 三方授权登录
2 years ago
/// </summary>
[Description("授权登录")]
2 years ago
AUTHORIZEDLOGIN = 4
}