UserFormSetVO.cs 466 B

123456789101112131415161718
  1. using System;
  2. using System.ComponentModel;
  3. namespace CLIP.eForm.Consent.Dfh.Entity
  4. {
  5. [Serializable]
  6. public class UserFormSetVO
  7. {
  8. public UserFormSetVO()
  9. {
  10. foreach (PropertyDescriptor property in TypeDescriptor.GetProperties(this))
  11. property.SetValue(this, "");
  12. }
  13. public string userid { get; set; }
  14. public string formcd { get; set; }
  15. public string formnm { get; set; }
  16. }
  17. }