You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

23 lines
410 B

namespace Znyc.Cloudcar.Admin.Commons.Enums
{
/// <summary>
/// 用户类型
/// </summary>
public enum UserType
{
/// <summary>
/// 会员
/// </summary>
Member = 0,
/// <summary>
/// 租户
/// </summary>
Tenant,
/// <summary>
/// 管理员
/// </summary>
Manager
}
}