Am trying create w REST service using WCF to cater for a particular use case but the way it is structured makes it unable to bind. The structure is as follows:
{
"1387213536":{
"ext_id":"1",
"unit_id":"0",
"currency":"EUR",
"login_hash": ""
},
"1387213537":{
"ext_id":"1",
"unit_id":"0",
"currency":"EUR",
"login_hash": ""
}
}
Does anyone have any idea to what type of object would this translate to? I tried to create a Dictionary<string, Dictionary<string, string>>
but it still fails to bind.
Thanks in advance