mirror of
https://github.com/bitwarden/server.git
synced 2026-02-04 08:03:29 +08:00
9 lines
290 B
C#
9 lines
290 B
C#
|
|
using Microsoft.Azure.NotificationHubs;
|
|||
|
|
|
|||
|
|
namespace Bit.Core.NotificationHub;
|
|||
|
|
|
|||
|
|
public interface INotificationHubProxy
|
|||
|
|
{
|
|||
|
|
Task<(INotificationHubClient Client, NotificationOutcome Outcome)[]> SendTemplateNotificationAsync(IDictionary<string, string> properties, string tagExpression);
|
|||
|
|
}
|