using System; using System.Data; using System.Collections; using System.Collections.Generic; using HcUtility.Core; using Newtonsoft.Json; namespace DSWeb.Areas.Account.Models.BSNOLB { [JsonObject] public class BSNOLB { #region private Fields private string _BSNO =""; private string _OPLB = ""; private string _CUSTNO = ""; #endregion #region Public Properties public string BSNO { get { return _BSNO; } set { _BSNO = value; } } public string OPLB { get { return _OPLB; } set { _OPLB = value; } } public string CUSTNO { get { return _CUSTNO; } set { _CUSTNO = value; } } public string ACCDATE { get; set; } #endregion } }