RoleListDto.cs 402 B

12345678910111213141516171819
  1. using System;
  2. using Abp.Application.Services.Dto;
  3. using Abp.Domain.Entities.Auditing;
  4. namespace VberZero.AppService.Roles.Dto;
  5. public class RoleListDto : EntityDto, IHasCreationTime
  6. {
  7. public string Name { get; set; }
  8. public string DisplayName { get; set; }
  9. public bool IsStatic { get; set; }
  10. public bool IsDefault { get; set; }
  11. public DateTime CreationTime { get; set; }
  12. }