Hi i need a help. i want to understand what will be the json list of a given data format.
var student=studentVersion
{
name="raj"
address="xyz"
}
var teacher=teacherVersion
{
name="raj"
salary="2000"
studentVersion=student
}
var manager=managerVersion
{
name="gis"
salary="9000"
studentVersion=student
teacherVersion= teacher
}
I couldn't understand how will be the json format of given c# model