namespace QYZH.InteractiveMagazine.Models.Settings;
///
/// RabbitMQ重试配置。
///
public class RabbitMQRetrySettings
{
///
/// 最大重试次数。
///
public int MaxRetryCount { get; set; } = 3;
///
/// 重试延迟毫秒数。
///
public int RetryDelayMilliseconds { get; set; } = 30000;
}