-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
8187016
commit 9fea2c9
Showing
4 changed files
with
9 additions
and
13 deletions.
There are no files selected for viewing
10 changes: 3 additions & 7 deletions
10
accessibility-service/src/Accessibility.Api/Options/EventBusOptions.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,16 @@ | ||
using System.Collections.Generic; | ||
using Accessibility.Application; | ||
|
||
namespace Accessibility.Api.Options | ||
{ | ||
public class EventBusOptions | ||
{ | ||
public EventBusOptions() | ||
{ | ||
Exchanges = new Dictionary<string, string>(); | ||
Exchanges = new Dictionary<EventBusExchange, string>(); | ||
} | ||
public const string EventBus = "EventBus"; | ||
|
||
public Dictionary<string, string> Exchanges { get; set; } | ||
} | ||
|
||
public enum EventBusExchange | ||
{ | ||
BookingRequests | ||
public Dictionary<EventBusExchange, string> Exchanges { get; set; } | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters