namespace Sanhe.Abp.Identity
{
public static class IdentityErrorCodes
{
///
/// 无法变更静态声明类型
///
public const string StaticClaimTypeChange = "Volo.Abp.Identity:020005";
///
/// 无法删除静态声明类型
///
public const string StaticClaimTypeDeletion = "Volo.Abp.Identity:020006";
///
/// 手机号码已被使用
///
public const string DuplicatePhoneNumber = "Volo.Abp.Identity:020007";
///
/// 你不能修改你的手机绑定信息
///
public const string UsersCanNotChangePhoneNumber = "Volo.Abp.Identity:020008";
///
/// 你不能修改你的邮件绑定信息
///
public const string UsersCanNotChangeEmailAddress = "Volo.Abp.Identity:020009";
}
}