DeptListVO.cs 279 B

1234567891011121314
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace CLIP.eForm.Consent.Dfh.Entity
  6. {
  7. [Serializable]
  8. public class DeptListVO
  9. {
  10. public string deptcd { get; set; }
  11. public string deptnm { get; set; }
  12. }
  13. }