12345678910111213141516171819 |
- using CallCenter.Notifications.Base;
- using CallCenter.Share.Notifications.Base;
- using MediatR;
- namespace CallCenter.Notifications
- {
- public class ByeVisitorAndExtNotification: BaseEvent, INotification
- {
- /// <summary>
- /// 分机号
- /// </summary>
- public string TelNo { get; set; }
- public BaseVisitor Visitor { get; set; }
- public string Recording { get; set; }
- }
- }
|