/// [설계자]
/// 클립소프트 기술부 4팀 이창훈 (chlee@clipsoft.co.kr)
/// [원본 작성자]
/// 클립소프트 기술부 이인희
/// [수정 작성자]
///
/// ----------------------------------------------------------------------------------------
/// [HISTORY]
/// 2016-06-28 : 최초작성
/// ----------------------------------------------------------------------------------------
///
[Serializable]
public class ConsentSetVO
{
public ConsentSetVO()
{
foreach (PropertyDescriptor property in TypeDescriptor.GetProperties(this))
{
if (property.DisplayName == "FormRid" || property.DisplayName == "PrntCnt")
{
property.SetValue(this, 0);
}
else
{
property.SetValue(this, "");
}
}
}
public int FormRid { get; set; }
public string FormGuid { get; set; }
public string FormCd { get; set; }
public string FormName { get; set; }
public string SetAuth { get; set; }
public int PrntCnt { get; set; }
public string PrintOnly { get; set; }
public string OcrTagYN { get; set; }
//public string SetType { get; set; }
//public string DeptCd { get; set; }
//public string DeptNm { get; set; }
//public string EsignYn { get; set; }
}
}