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