ImageServerPropsVO.cs 527 B

1234567891011121314151617181920
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace CLIP.eForm.Consent.Entity
  6. {
  7. /// <summary>
  8. /// 이미지 저장 서버 경로를 가져오기 위한 Entity
  9. /// </summary>
  10. [Serializable]
  11. public class ImageServerPropsVO
  12. {
  13. public string ipaddr { get; set; }
  14. public string localpath { get; set; }
  15. public string active { get; set; }
  16. public string username { get; set; }
  17. public string userpasswd { get; set; }
  18. }
  19. }