xf 2 anos atrás
pai
commit
15cc675352

+ 19 - 0
src/Hotline.Application/Handlers/CallCenter/ListManage/BlacklistExpiredHandler.cs

@@ -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();
+        }
+    }
+}