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.
 
 
 
 
 

15 lines
236 B

using System;
namespace CK.SCP.Models
{
/// <summary>
/// 用户类型-TA_User.UserTye
/// </summary>
[Serializable]
public enum EnumUserType
{
Admin = 1,
SuperVisor = 2,
User = 3
}
}