I have the following class But Im getting the error:
Attribute specifier is not a complete statement. Use a line continuation to apply the attribute to the following statement.
The error is on line: <JsonProperty(PropertyName:="error")>
note this is for .Net 2.0
Imports Newtonsoft.Json
Public Class FastWayError
<JsonProperty(PropertyName:="error")>
Public error_ As String
Public generated_in As String
Public data As Object
End Class