I have a json file as following:

and I wish to parse them using C#, I tried the Json from Newtonsoft but when I parsed it I got a null and I also tried to paste the Json data as a string in C# but seems like there are many syntax errors in a json data string.
var source = File.ReadAllText("Test/jsonfile.json");
dynamic stuff = JObject.Parse(source);
string name = stuff.hotelID;