DeptListVO.cs 214 B

12345678910
  1. using System;
  2. using System.ComponentModel;
  3. namespace CLIP.eForm.Consent.Entity {
  4. [Serializable]
  5. public class DeptListVO {
  6. public string deptCd { get; set; }
  7. public string deptNm { get; set; }
  8. }
  9. }