| 1234567891011121314151617181920 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace CallCenterApi.Model
- {
- public class T_CTI_TaskDaily
- {
- public DateTime Date { get; set; }
- public int TaskId { get; set; }
- public int AllCount { get; set; }
- public int CalledCount { get; set; }
- public int ConnectedCount { get; set; }
- public int ConnectedAgentCount { get; set; }
- public DateTime UpdateTime { get; set; }
- }
- }
|