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