namespace QFSW.QC
{
///
/// Options used by the suggestor when producing suggestions.
///
public struct SuggestorOptions
{
///
/// If case of the prompt should be considered when producing suggestions.
///
public bool CaseSensitive;
///
/// If fuzzy searching should be used when producing suggestions.
///
public bool Fuzzy;
///
/// If overloads of the same suggestion should be collapsed into
/// a single suggestion with optional elements where possible.
///
public bool CollapseOverloads;
}
}