From a6eff2480682357dff57d4adc6a9dab0fc6c0cff Mon Sep 17 00:00:00 2001 From: liangshiwei Date: Thu, 26 Dec 2024 14:57:21 +0800 Subject: [PATCH] Add CreationTime to IdentityRoleDto --- .../Volo/Abp/Identity/IdentityRoleDto.cs | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) 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; } }