|
@@ -0,0 +1,19 @@
|
|
|
+using System;
|
|
|
+using System.Collections.Generic;
|
|
|
+using System.Linq;
|
|
|
+using System.Text;
|
|
|
+using System.Threading.Tasks;
|
|
|
+using DotNetCore.CAP;
|
|
|
+using Hotline.Share.Mq;
|
|
|
+
|
|
|
+namespace Hotline.Application.Handlers.CallCenter.ListManage
|
|
|
+{
|
|
|
+ public class BlacklistExpiredHandler : ICapSubscribe
|
|
|
+ {
|
|
|
+ [CapSubscribe(EventNames.CallCenterBlackListExpired)]
|
|
|
+ public async Task BlacklistExpiredAsync(CancellationToken cancellationToken)
|
|
|
+ {
|
|
|
+ throw new NotImplementedException();
|
|
|
+ }
|
|
|
+ }
|
|
|
+}
|