using CallCenter.Notifications.Base; using CallCenter.Share.Notifications.Base; using MediatR; namespace CallCenter.Notifications { public class ByeVisitorAndExtNotification: BaseEvent, INotification { /// /// 分机号 /// public string TelNo { get; set; } public BaseVisitor Visitor { get; set; } public string Recording { get; set; } } }