SettingListVO.cs.svn-base 459 B

123456789101112131415161718192021
  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel;
  4. using System.Linq;
  5. using System.Text;
  6. namespace CLIP.eForm.Consent.Entity {
  7. [Serializable]
  8. public class SettingListVO {
  9. public SettingListVO() {
  10. foreach (PropertyDescriptor property in TypeDescriptor.GetProperties(this)) {
  11. property.SetValue(this, "");
  12. }
  13. }
  14. public string keyName { get; set; }
  15. public string keyValue { get; set; }
  16. }
  17. }