11 lines
188 B
C#
11 lines
188 B
C#
namespace StellaOps.Notify.Queue;
|
|
|
|
/// <summary>
|
|
/// Supported transports for the Notify event queue.
|
|
/// </summary>
|
|
public enum NotifyQueueTransportKind
|
|
{
|
|
Redis,
|
|
Nats
|
|
}
|