1234567891011121314151617181920 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- namespace CLIP.eForm.Consent.Entity
- {
- /// <summary>
- /// 이미지 저장 서버 경로를 가져오기 위한 Entity
- /// </summary>
- [Serializable]
- public class ImageServerPropsVO
- {
- public string ipaddr { get; set; }
- public string localpath { get; set; }
- public string active { get; set; }
- public string username { get; set; }
- public string userpasswd { get; set; }
- }
- }
|