10 lines
170 B
C#
10 lines
170 B
C#
using Volo.Abp.Identity;
|
|
|
|
namespace Sozsoft.Platform.OrganizationUnits;
|
|
|
|
public class OuIdentityRoleDto : IdentityRoleDto
|
|
{
|
|
public int UserCount { get; set; }
|
|
|
|
}
|
|
|