CategoryForDropdownVO.cs 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. #region Copyright © 2015 CLIPSOFT Co.,Ltd. All Rights Reserved.
  2. //
  3. // All rights are reserved. Reproduction or transmission in whole or in part,
  4. // in any form or by any means, electronic, mechanical or otherwise, is
  5. // prohibited without the prior written consent of the copyright owner.
  6. //
  7. // Filename:CategoryForDropdownVO.cs
  8. //
  9. #endregion
  10. using System;
  11. using System.ComponentModel;
  12. namespace CLIP.eForm.Consent.Entity
  13. {
  14. /// <summary>
  15. /// 서식 종류를 Dropdown에서 선택하기 위한 데이터 엔터티
  16. /// </summary>
  17. /// <remarks>
  18. /// <p>[설계자]</p>
  19. /// <p> 클립소프트 기술부 4팀 이창훈 (chlee@clipsoft.co.kr)</p>
  20. /// <p>[원본 작성자]</p>
  21. /// <p> 클립소프트 기술부 4팀 이창훈 (chlee@clipsoft.co.kr)</p>
  22. /// <p>[수정 작성자]</p>
  23. /// <p></p>
  24. /// <p>----------------------------------------------------------------------------------------</p>
  25. /// <p>[HISTORY]</p>
  26. /// <p> 2016-05-20 : 최초작성</p>
  27. /// <p>----------------------------------------------------------------------------------------</p>
  28. /// </remarks>
  29. [Serializable]
  30. public class CategoryForDropdownVO
  31. {
  32. public CategoryForDropdownVO()
  33. {
  34. foreach (PropertyDescriptor property in TypeDescriptor.GetProperties(this))
  35. property.SetValue(this, "");
  36. }
  37. public string CategoryType { get; set; }
  38. public string CategoryId { get; set; }
  39. public string CategoryName { get; set; }
  40. }
  41. }