I have a simple json:
{
"timestamp": "38519277!12/14/2018 08:35:17",
"entity": "Account",
"entity": "Contact",
"entity": "Case"
}
That I need to add to Dictionary:
Dictionary<string, string> objects = new Dictionary<string, string>();
The key is entity and the value is always the same timestamp. I'm not sure how to proceed. This is something I have not done before. Can anyone advise?