Buen día tengo varias listas, y cada lista la quiero convertir a un schema asi como este ejemplo: donde ProdSet1,ProdSet2 son listas diferentes:
{
"ProdSet1":[
{
"Name": "Product 1-1",
"Price": 20,
"Quantity": 50,
"Change": 4
},
{
"Name": "Product 1-2",
"Price": 14,
"Quantity": 74,
"Change": 5
}
],
"ProdSet2":[
{
"OtherName": "Product 2-1",
"OtherPrice": 15,
"OtherQuantity": 12,
"OtherChange": 2
}
]
}
quiero enviar el mismo Json , pero con diferentes Schemas, gracias de antemano por su colaboración.