mirror of
https://github.com/meysamhadeli/booking-microservices.git
synced 2026-04-12 11:32:10 +08:00
8 lines
155 B
C#
8 lines
155 B
C#
namespace BuildingBlocks.Polly;
|
|
|
|
public class CircuitBreakerOptions
|
|
{
|
|
public int RetryCount { get; set; }
|
|
public int BreakDuration { get; set; }
|
|
}
|