EventBusConfiguration.cs 272 B

123456789101112
  1. namespace Abp.Configuration.Startup
  2. {
  3. internal class EventBusConfiguration : IEventBusConfiguration
  4. {
  5. public bool UseDefaultEventBus { get; set; }
  6. public EventBusConfiguration()
  7. {
  8. UseDefaultEventBus = true;
  9. }
  10. }
  11. }