diff --git a/modules/identity/src/Volo.Abp.Identity.Application.Contracts/Volo/Abp/Identity/IdentityRoleDto.cs b/modules/identity/src/Volo.Abp.Identity.Application.Contracts/Volo/Abp/Identity/IdentityRoleDto.cs index 71185cf288..1232045903 100644 --- a/modules/identity/src/Volo.Abp.Identity.Application.Contracts/Volo/Abp/Identity/IdentityRoleDto.cs +++ b/modules/identity/src/Volo.Abp.Identity.Application.Contracts/Volo/Abp/Identity/IdentityRoleDto.cs @@ -1,10 +1,11 @@ using System; using Volo.Abp.Application.Dtos; using Volo.Abp.Domain.Entities; +using Volo.Abp.Auditing; namespace Volo.Abp.Identity; -public class IdentityRoleDto : ExtensibleEntityDto, IHasConcurrencyStamp +public class IdentityRoleDto : ExtensibleEntityDto, IHasConcurrencyStamp , IHasCreationTime { public string Name { get; set; } @@ -15,4 +16,6 @@ public class IdentityRoleDto : ExtensibleEntityDto, IHasConcurrencyStamp public bool IsPublic { get; set; } public string ConcurrencyStamp { get; set; } + + public DateTime CreationTime { get; set; } }