AlertExtToExtNotification.cs 358 B

1234567891011121314151617
  1. using CallCenter.Share.Notifications.Base;
  2. using MediatR;
  3. namespace CallCenter.Notifications
  4. {
  5. /// <summary>
  6. /// 分机呼分机,被叫分机回铃
  7. /// </summary>
  8. public class AlertExtToExtNotification : BaseEvent, INotification
  9. {
  10. public string FromTelNo { get; set; }
  11. public string ToTelNo { get; set; }
  12. }
  13. }