| 12345678910111213141516171819 |
- using System;
- using Abp.Application.Services.Dto;
- using Abp.Domain.Entities.Auditing;
- namespace VberZero.AppService.Roles.Dto;
- public class RoleListDto : EntityDto, IHasCreationTime
- {
- public string Name { get; set; }
- public string DisplayName { get; set; }
- public bool IsStatic { get; set; }
- public bool IsDefault { get; set; }
- public DateTime CreationTime { get; set; }
- }
|