SettingDto.cs 544 B

1234567891011121314151617
  1. using Abp.Application.Services.Dto;
  2. using Abp.AutoMapper;
  3. using IwbZero.Authorization.Base.SystemInfo;
  4. namespace WePlatform.BaseSystem.Settings.Dto
  5. {
  6. [AutoMapTo(typeof(SysSetting)), AutoMapFrom(typeof(SysSetting))]
  7. public class SettingDto : EntityDto<long>
  8. {
  9. public string Name { get; set; }
  10. public string Value { get; set; }
  11. public string DisplayName { get; set; }
  12. public int? Type { get; set; }
  13. public string Description { get; set; }
  14. public string Remark { get; set; }
  15. }
  16. }