namespace NeXt.Vdf
{
///
/// Flag that determines how to handle a VdfValue
///
///
/// All VdfValues can be casted according to their Type:
/// VdfValueType.Table => VdfTable
/// VdfValueType.String => VdfString
/// VdfValueType.Integer => VdfInteger
/// VdfValueType.Double => VdfDouble
///
public enum VdfValueType
{
Table,
String,
Long,
Decimal,
}
}