diff --git a/src/ReC.Client/ReCClientOptions.cs b/src/ReC.Client/ReCClientOptions.cs new file mode 100644 index 0000000..bffe73d --- /dev/null +++ b/src/ReC.Client/ReCClientOptions.cs @@ -0,0 +1,16 @@ +namespace ReC.Client +{ + /// + /// Options that control the behavior of the . + /// + public class ReCClientOptions + { + /// + /// Gets or sets a value indicating whether successful API requests should be + /// logged through the injected . + /// Failed requests always throw regardless of this setting. + /// Defaults to . + /// + public bool LogSuccessfulRequests { get; set; } = true; + } +}