using System; using System.Collections.Generic; using System.ComponentModel; using System.Linq; using System.Text; namespace CLIP.eForm.Consent.Entity { [Serializable] public class SettingListVO { public SettingListVO() { foreach (PropertyDescriptor property in TypeDescriptor.GetProperties(this)) { property.SetValue(this, ""); } } public string keyName { get; set; } public string keyValue { get; set; } } }