DocSpace-buildtools/common/ASC.Core.Common/Notify/ISendInterceptor.cs

10 lines
268 B
C#

namespace ASC.Notify;
public interface ISendInterceptor
{
string Name { get; }
InterceptorPlace PreventPlace { get; }
InterceptorLifetime Lifetime { get; }
bool PreventSend(NotifyRequest request, InterceptorPlace place, IServiceScope serviceScope);
}