DocListVO.cs 368 B

12345678910111213141516
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace CLIP.eForm.Consent.Entity
  6. {
  7. [Serializable]
  8. public class DocListVO
  9. {
  10. public string doctorId { get; set; }
  11. public string doctorNm { get; set; }
  12. public string doctorKind { get; set; }
  13. public string drKind { get; set; }
  14. }
  15. }