// Copyright © 2018 The CefSharp Authors. All rights reserved.
//
// Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.
namespace CefSharp.Enums
{
///
/// Value types supported by
///
public enum ValueType
{
///
/// Invalid type
///
Invalid = 0,
///
/// Null
///
Null = 1,
///
/// Boolean
///
Bool = 2,
///
/// Integer
///
Int = 3,
///
/// Double
///
Double = 4,
///
/// String
///
String = 5,
///
/// Binary
///
Binary = 6,
///
/// Dictionary
///
Dictionary = 7,
///
/// List
///
List = 8
}
}