DocListVO.cs 343 B

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