1234567891011121314151617 |
- using CallCenter.Share.Notifications.Base;
- using MediatR;
- namespace CallCenter.Notifications
- {
- /// <summary>
- /// 分机呼分机,被叫分机回铃
- /// </summary>
- public class AlertExtToExtNotification : BaseEvent, INotification
- {
- public string FromTelNo { get; set; }
- public string ToTelNo { get; set; }
- }
- }
|