AnswerExtToExtNotification.cs 274 B

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