Browse Source
Merge pull request #16733 from abpframework/EngincanV/update-summary
Update misleading summary for OrganizationUnitRole.cs
pull/16734/head
liangshiwei
3 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
2 additions and
2 deletions
-
modules/identity/src/Volo.Abp.Identity.Domain/Volo/Abp/Identity/OrganizationUnitRole.cs
|
|
|
@ -5,7 +5,7 @@ using Volo.Abp.MultiTenancy; |
|
|
|
namespace Volo.Abp.Identity; |
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Represents membership of a User to an OU.
|
|
|
|
/// Represents the link between a role and an organization unit.
|
|
|
|
/// </summary>
|
|
|
|
public class OrganizationUnitRole : CreationAuditedEntity, IMultiTenant |
|
|
|
{ |
|
|
|
@ -36,7 +36,7 @@ public class OrganizationUnitRole : CreationAuditedEntity, IMultiTenant |
|
|
|
/// Initializes a new instance of the <see cref="OrganizationUnitRole"/> class.
|
|
|
|
/// </summary>
|
|
|
|
/// <param name="tenantId">TenantId</param>
|
|
|
|
/// <param name="roleId">Id of the User.</param>
|
|
|
|
/// <param name="roleId">Id of the Role.</param>
|
|
|
|
/// <param name="organizationUnitId">Id of the <see cref="OrganizationUnit"/>.</param>
|
|
|
|
public OrganizationUnitRole(Guid roleId, Guid organizationUnitId, Guid? tenantId = null) |
|
|
|
{ |
|
|
|
|