mirror of
https://github.com/meysamhadeli/booking-microservices.git
synced 2026-04-12 03:12:11 +08:00
8 lines
170 B
C#
8 lines
170 B
C#
namespace BuildingBlocks.Polly;
|
|
|
|
public class PolicyOptions
|
|
{
|
|
public RetryOptions Retry { get; set; }
|
|
public CircuitBreakerOptions CircuitBreaker { get; set; }
|
|
}
|