ByeExtAndOuterOneNotification.cs 321 B

1234567891011121314
  1. using Hotline.Share.Notifications.Base;
  2. using MediatR;
  3. namespace Hotline.Share.Notifications
  4. {
  5. public class ByeExtAndOuterOneNotification: BaseEvent, INotification
  6. {
  7. public string TelNo { get; set; }
  8. public BaseOuter Outer { get; set; }
  9. public string Recording { get; set; }
  10. }
  11. }