namespace Telegrator.Annotations.StateKeeping
{
///
/// Represents special states for state keeping logic.
///
public enum SpecialState
{
///
/// No special state.
///
None,
///
/// Indicates that no state is present.
///
NoState,
///
/// Indicates that any state is acceptable.
///
AnyState
}
}