using System.ComponentModel.DataAnnotations; using Abp.Application.Services.Dto; using VberZero.BaseSystem.Roles; namespace VberZero.AppService.Roles.Dto; public class RoleEditDto : EntityDto { [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; } }