using System;
namespace PepperDash.Core
{
///
/// The available settings for stream debugging
///
[Flags]
public enum eStreamDebuggingSetting
{
///
/// Debug off
///
Off = 0,
///
/// Debug received data
///
Rx = 1,
///
/// Debug transmitted data
///
Tx = 2,
///
/// Debug both received and transmitted data
///
Both = Rx | Tx
}
}