namespace Hotline.Share.Dtos.CallCenter
{
public class TelNotifyStatusDto
{
///
/// 分机号
///
public string TelNo { get; set; }
///
/// 工号
///
public string StaffNo { get; set; }
///
/// 状态
///
public int Status { get; set; }
///
/// 收到时间
///
public DateTime? NotifyStatusTime { get; set; }
}
}