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
parent
commit
532c2919c7
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 4
      modules/identity/src/Volo.Abp.Identity.Domain/Volo/Abp/Identity/OrganizationUnitRole.cs

4
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)
{

Loading…
Cancel
Save