Following is my code snippet.
public class MyModelClass
{
public Matter Matter {get;set;} // where Matter is json
}
public class Matter
{
public List<Issue> Issues {get;set;} // list i want to convert on base of types
}
public class Issue
{
}
public class Issue1:Issue
{
}
public class Issue2:Issue
{
}
public class Issue3:Issue
{
}
I have already found solution for json field conversion but I need to do for nested.