// Json
{
"application": [
"java.util.arraylist",
[
{
"applicationId": "XXXX"
}
]
],
"applicationType": "ZZZZ",
"functionType": "YYYY"
}
I have created the below property for above JSON
public class Root
{
public Application[] Application { get; set; }
public string ApplicationType { get; set; }
public string FunctionType { get; set; }
}
public class Application
{
public string something { get; set; }
public SubApplication[] SubApplicationItem { get; set; }
}
public class SubApplication
{
public string applicationId { get; set; }
}
Not sure how should I create a property for below part of the JSON, Can someone please share your thoughts on this
[ "java.util.arraylist", [