using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace CLIP.eForm.Consent.Entity { /// /// 이미지 저장 서버 경로를 가져오기 위한 Entity /// [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; } } }