hello-shop/libraries/HelloShop.EventBus.RabbitMQ/RabbitMQEventBusOptions.cs
2025-03-28 22:27:12 +08:00

15 lines
427 B
C#

// Copyright (c) HelloShop Corporation. All rights reserved.
// See the license file in the project root for more information.
namespace HelloShop.EventBus.RabbitMQ
{
public class RabbitMQEventBusOptions
{
public string ExchangeName { get; set; } = "event-bus-exchange";
public required string QueueName { get; set; } = "event-bus-queue";
public int RetryCount { get; set; } = 10;
}
}