namespace AssetStudio { /// /// Specifies the style of a YAML scalar. /// public enum ScalarStyle { /// /// The plain scalar style. /// Plain, /// /// /// Hex, /// /// The single-quoted scalar style. /// SingleQuoted, /// /// The double-quoted scalar style. /// DoubleQuoted, } }