using Abp.Application.Services.Dto; using Abp.AutoMapper; using VberZero.BaseSystem; namespace VberZero.AppService.Settings.Dto; [AutoMapTo(typeof(SysSetting)), AutoMapFrom(typeof(SysSetting))] public class SettingDto : EntityDto { public string Name { get; set; } public string Value { get; set; } public int Type { get; set; } } public class ChangeSettingDto { public string Name { get; set; } public string Value { get; set; } public string Password { get; set; } }