| 1234567891011121314151617181920212223 |
- using System.ComponentModel.DataAnnotations;
- using Abp.Application.Services.Dto;
- using VberZero.BaseSystem.Roles;
- namespace VberZero.AppService.Roles.Dto;
- public class RoleEditDto : EntityDto<int>
- {
- [Required]
- [StringLength(Role.MaxNameLength)]
- public string Name { get; set; }
- [Required]
- [StringLength(Role.MaxDisplayNameLength)]
- public string DisplayName { get; set; }
- [StringLength(Role.MaxDescriptionLength)]
- public string Description { get; set; }
- public bool IsStatic { get; set; }
- }
|