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/RoleType.cs

23 lines
387 B
C#

using System.ComponentModel;
namespace Myshipping.Core;
/// <summary>
/// 账号类型
/// </summary>
public enum RoleType
{
/// <summary>
/// 租户管理员角色
/// </summary>
[Description("租户管理员角色")]
AdminRole = 1,
/// <summary>
/// 租户普通角色
/// </summary>
[Description("租户普通角色")]
NormalRole = 0,
}