pull/3210/head
Ahmet Çotur 5 years ago
parent 27dd593f46
commit 5e9babb6e0

@ -9,18 +9,18 @@ namespace Volo.Abp.Identity
public Guid? TenantId { get; set; }
public virtual string Name { get; set; }
public string Name { get; set; }
public virtual bool Required { get; set; }
public bool Required { get; set; }
public virtual bool IsStatic { get; set; }
public bool IsStatic { get; set; }
public virtual string Regex { get; set; }
public string Regex { get; set; }
public virtual string RegexDescription { get; set; }
public string RegexDescription { get; set; }
public virtual string Description { get; set; }
public string Description { get; set; }
public virtual IdentityClaimValueType ValueType { get; set; }
public IdentityClaimValueType ValueType { get; set; }
}
}

@ -9,14 +9,14 @@ namespace Volo.Abp.Identity
public Guid? TenantId { get; set; }
public virtual string Name { get; set; }
public string Name { get; set; }
public virtual string NormalizedName { get; set; }
public string NormalizedName { get; set; }
public virtual bool IsDefault { get; set; }
public bool IsDefault { get; set; }
public virtual bool IsStatic { get; set; }
public bool IsStatic { get; set; }
public virtual bool IsPublic { get; set; }
public bool IsPublic { get; set; }
}
}

@ -7,7 +7,7 @@ namespace Volo.Abp.Identity
public IdentityDomainMappingProfile()
{
CreateMap<IdentityClaimType, IdentityClaimTypeEto>();
CreateMap<IdentityRoleEto, IdentityRoleEto>();
CreateMap<IdentityRole, IdentityRoleEto>();
}
}
}
Loading…
Cancel
Save