FunctionUpdateDto.cs 496 B

12345678910111213141516171819
  1. using System.ComponentModel.DataAnnotations;
  2. using Abp.Application.Services.Dto;
  3. using Abp.AutoMapper;
  4. using VberZero.AppService.Base.TreeBase.Dto;
  5. using VberZero.BaseSystem;
  6. namespace VberZero.AppService.Functions.Dto;
  7. [AutoMapTo(typeof(SysFunction))]
  8. public class FunctionUpdateDto : VzTreeEntityDto<int?>
  9. {
  10. [MaxLength(SysFunction.DisplayNameMaxLength)]
  11. public string DisplayName { get; set; }
  12. [StringLength(SysFunction.IconMaxLength)]
  13. public string Icon { get; set; }
  14. }