Need to de-serialize an array of array response to List<Model>
This is my response from other endpoint:
"[[{"BillRateCardId":6992,"ExternalRateCardId":"cd77d9b5-a00e-4696"}]]"
Am using the below line of code to deserialize it to the Model but receiving the error "cant de-serialize that":
List<Model> Res = JsonConvert.DeserializeObject<List<Model>>(Response);