using Abp.Application.Services.Dto; using Abp.AutoMapper; using IwbZero.Authorization.Base.SystemInfo; namespace WeOnlineApp.BaseSystem.Settings.Dto { [AutoMapTo(typeof(SysSetting)), AutoMapFrom(typeof(SysSetting))] public class SettingDto : EntityDto { public string Name { get; set; } public string Value { get; set; } public string DisplayName { get; set; } public int? Type { get; set; } public string Description { get; set; } public string Remark { get; set; } } }