namespace RhythmBase.Settings
{
///
/// Actions performed on inactive items at read or write times.
///
public enum InactiveEventsHandling
{
///
/// Retaining inactivated events to the level on reads.
/// Write inactivated events on writes.
///
Retain,
///
/// Dumps inactivated events to on reads and writes.
///
Store,
///
/// Ignore inactivation events on reads and writes.
///
Ignore
}
}