ByeExtAndExtNotification.cs 317 B

123456789101112
  1. using Hotline.Share.Notifications.Base;
  2. using MediatR;
  3. namespace Hotline.Share.Notifications
  4. {
  5. public class ByeExtAndExtNotification: BaseEvent, INotification
  6. {
  7. public string FromTelNo { get; set; }
  8. public string ToTelNo { get; set; }
  9. public string Recording { get; set; }
  10. }
  11. }