| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- 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;
- /// <summary>
- ///
- /// </summary>
- public int ID
- {
- set { _id = value; }
- get { return _id; }
- }
- /// <summary>
- ///
- /// </summary>
- public int taskID
- {
- set { _taskid = value; }
- get { return _taskid; }
- }
- /// <summary>
- ///
- /// </summary>
- public string BINGRENZYID
- {
- set { _bingrenzyid = value; }
- get { return _bingrenzyid; }
- }
- /// <summary>
- ///
- /// </summary>
- public string sfstate
- {
- set { _sfstate = value; }
- get { return _sfstate; }
- }
- #endregion Model
- }
- }
|