using System.ComponentModel.DataAnnotations; using Abp.Application.Services.Dto; using Abp.AutoMapper; using VberZero.BaseSystem; namespace VberZero.AppService.Settings.Dto; [AutoMapTo(typeof(SysSetting))] public class SettingUpdateDto : EntityDto { [Required] [StringLength(SysSetting.MaxNameLength)] public string Name { get; set; } public string Value { get; set; } public bool IsSelf { get; set; } }