12345678910111213141516171819202122232425 |
- 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, "");
- //}
- }
- }
- }
- }
|