using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace YTSoft.BaseCallCenter.Model { public class T_SYS_Time { public T_SYS_Time() { } #region Model private string _f_workstarttimes; private string _f_workendtimes; /// /// /// public string F_WorkStartTimes { set { _f_workstarttimes = value; } get { return _f_workstarttimes; } } /// /// /// public string F_WorkEndTimes { set { _f_workendtimes = value; } get { return _f_workendtimes; } } #endregion Model } }