Cannot deserialize the JSON array

Hello,
I am trying to deserialize the Json string into List and getting the following error "Cannot deserialize the current JSON object (e.g. {"name":"value"}) into type 'System.Collections.Generic.List`1[JIRA.Objects.DeletedWorkLog]' because the type requires a JSON array (e.g. [1,2,3]) to deserialize correctly.
To fix this error either change the JSON to a JSON array (e.g. [1,2,3]) or change the deserialized type so that it is a normal .NET type (e.g. not a primitive type like integer, not a collection type like an array or List<T>) that can be deserialized from a JSON object. JsonObjectAttribute can also be added to the type to force it to deserialize from a JSON object.
Path 'values', line 1, position 10."

Can you please suggested the C# Code on this and help me on this issue?

C# Code :
List<DeletedWorkLog> DeletedWorkLog = JsonConvert.DeserializeObject<List<DeletedWorkLog>>(JosnSrting.ToString());

Property Class:
public class DeletedWorkLog
{

[JsonProperty("values")]
public string Values { get; set; }
public string WorklogId { get; set; }
public string UpdatedTime { get; set; }

}

JSON String : https://developer.atlassian.com/cloud/jira/platform/rest/v3/#api-rest-api-3-worklog-deleted-get

{
"values": [
{
"worklogId": 103,
"updatedTime": 1438013671562,
"properties": []
},
{
"worklogId": 104,
"updatedTime": 1438013672165,
"properties": []
},
{
"worklogId": 105,
"updatedTime": 1438013693136,
"properties": []
}
],
"since": 1438013671562,
"until": 1438013693136,
"self": "https://your-domain.atlassian.net/api/~ver~/worklog/deleted?since=1438013671562",
"nextPage": "https://your-domain.atlassian.net/api/~ver~/worklog/deleted?since=1438013693136",
"lastPage": true
}

Thanks,
Sab