ByeVisitorAndExtNotification.cs 429 B

12345678910111213141516171819
  1. using CallCenter.Notifications.Base;
  2. using CallCenter.Share.Notifications.Base;
  3. using MediatR;
  4. namespace CallCenter.Notifications
  5. {
  6. public class ByeVisitorAndExtNotification: BaseEvent, INotification
  7. {
  8. /// <summary>
  9. /// 分机号
  10. /// </summary>
  11. public string TelNo { get; set; }
  12. public BaseVisitor Visitor { get; set; }
  13. public string Recording { get; set; }
  14. }
  15. }