Browse Source

Add CreationTime to IdentityRoleDto

pull/21736/head
liangshiwei 1 year ago
parent
commit
a6eff24806
  1. 5
      modules/identity/src/Volo.Abp.Identity.Application.Contracts/Volo/Abp/Identity/IdentityRoleDto.cs

5
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<Guid>, IHasConcurrencyStamp
public class IdentityRoleDto : ExtensibleEntityDto<Guid>, IHasConcurrencyStamp , IHasCreationTime
{
public string Name { get; set; }
@ -15,4 +16,6 @@ public class IdentityRoleDto : ExtensibleEntityDto<Guid>, IHasConcurrencyStamp
public bool IsPublic { get; set; }
public string ConcurrencyStamp { get; set; }
public DateTime CreationTime { get; set; }
}

Loading…
Cancel
Save