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 { [MaxLength(SysFunction.DisplayNameMaxLength)] public string DisplayName { get; set; } [StringLength(SysFunction.IconMaxLength)] public string Icon { get; set; } }