Sujeet Raman

Sujeet Raman

  • 864
  • 927
  • 352.9k

what will be the json format of given data?

May 25 2021 12:21 PM
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

Answers (1)