namespace CryptoExchange.Net.Objects.Options
{
///
/// Base for order book options
///
public class OrderBookOptions
{
///
/// Whether or not checksum validation is enabled. Default is true, disabling will ignore checksum messages.
///
public bool ChecksumValidationEnabled { get; set; } = true;
///
/// Create a copy of this options
///
///
///
public T Copy() where T : OrderBookOptions, new()
{
return new T
{
ChecksumValidationEnabled = ChecksumValidationEnabled,
};
}
}
}