|
|
|
@ -14,7 +14,7 @@ namespace Volo.Abp.Identity; |
|
|
|
/// <summary>
|
|
|
|
/// Represents a role in the identity system
|
|
|
|
/// </summary>
|
|
|
|
public class IdentityRole : AggregateRoot<Guid>, IMultiTenant, IHasEntityVersion |
|
|
|
public class IdentityRole : AggregateRoot<Guid>, IMultiTenant, IHasEntityVersion, IHasCreationTime |
|
|
|
{ |
|
|
|
public virtual Guid? TenantId { get; protected set; } |
|
|
|
|
|
|
|
@ -53,6 +53,8 @@ public class IdentityRole : AggregateRoot<Guid>, IMultiTenant, IHasEntityVersion |
|
|
|
/// A version value that is increased whenever the entity is changed.
|
|
|
|
/// </summary>
|
|
|
|
public virtual int EntityVersion { get; protected set; } |
|
|
|
|
|
|
|
public virtual DateTime CreationTime { get; protected set; } |
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Initializes a new instance of <see cref="IdentityRole"/>.
|
|
|
|
|