using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace CallCenterApi.Model { [Serializable] public partial class SF_TaskDetail { public SF_TaskDetail() { } #region Model private int _id; private int _taskid; private string _bingrenzyid; private string _sfstate; /// /// /// public int ID { set { _id = value; } get { return _id; } } /// /// /// public int taskID { set { _taskid = value; } get { return _taskid; } } /// /// /// public string BINGRENZYID { set { _bingrenzyid = value; } get { return _bingrenzyid; } } /// /// /// public string sfstate { set { _sfstate = value; } get { return _sfstate; } } #endregion Model } }