| 123456789101112131415161718192021 |
- 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<long>
- {
- 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; }
- }
|