using System; using System.Collections.Generic; using System.ComponentModel; namespace CLIP.eForm.Consent.Entity { [Serializable] class OperationNameVO { public OperationNameVO() { foreach (PropertyDescriptor property in TypeDescriptor.GetProperties(this)) { //if (property.DisplayName == "" || property.DisplayName == "") //{ // property.SetValue(this, 0); //} //else //{ // property.SetValue(this, ""); //} } } } }