mirror of
https://github.com/bitwarden/server.git
synced 2026-02-12 11:53:23 +08:00
* Enable NRT for Core/Jobs files * Enable NRT for Core/HostedServices files * Enable NRT for Core/Exceptions files * Enable NRT for Core/NotificationHub files --------- Co-authored-by: Bernd Schoolmann <mail@quexten.com>
13 lines
292 B
C#
13 lines
292 B
C#
using Microsoft.Azure.NotificationHubs;
|
|
|
|
namespace Bit.Core.NotificationHub;
|
|
|
|
#nullable enable
|
|
|
|
public interface INotificationHubPool
|
|
{
|
|
NotificationHubConnection ConnectionFor(Guid comb);
|
|
INotificationHubClient ClientFor(Guid comb);
|
|
INotificationHubProxy AllClients { get; }
|
|
}
|