public class VKGroupObject
    {
        public ResponseGroup response { get; set; }
    }
    public class ResponseGroup
    {
        public string count { get; set; }
        public IList<VKGroupItems> items { get; set; }
    }
    public class VKGroupItems
    {
        public string id { get; set; }
        public string name { get; set; }
        public string screen_name { get; set; }
        public string is_admin { get; set; }
        public string admin_level { get; set; }
        public string photo_50 { get; set; }
    }
Это мой класс
public List<T> GetData<T>(string json)
        {
            List<T> group = new List<T>();
            group.Add(JsonConvert.DeserializeObject<T>(json));
            return group;
        }
вот метод десериализации
P.S. Подключаю и использую Newtonsoft.Json
-> Install-Package Newtonsoft.Json