| 12345678910111213141516171819 |
- using System.ComponentModel.DataAnnotations;
- using Abp.Application.Services.Dto;
- using Abp.AutoMapper;
- using VberZero.AppService.Base.TreeBase.Dto;
- using VberZero.BaseSystem;
- namespace VberZero.AppService.Functions.Dto;
- [AutoMapTo(typeof(SysFunction))]
- public class FunctionUpdateDto : VzTreeEntityDto<int?>
- {
- [MaxLength(SysFunction.DisplayNameMaxLength)]
- public string DisplayName { get; set; }
- [StringLength(SysFunction.IconMaxLength)]
- public string Icon { get; set; }
- }
|