I have problem when trying to deserialize a json from internet. But I don't know how to deserialize difference types in one array correctly. How to do it correctly? Sorry for my poor english.
Here is json:
{
    "timestamp":"2012-06-19T08:00:49Z",
    "items":[
        {
            "type":"text",
            "content":"etc"
        },
        {
            "type":"video",
            "url":"etc"
        }
        ...
    ]
}
My code:
public interface IPost
{
    string PostType { get; set; }
}    
public class TextPost : IPost
{
    [JsonProperty("type")]
    public string PostType { get; set; }
    [JsonProperty("content")]
    public string Content { get; set; }
}
public class VideoPost : IPost
{
    [JsonProperty("type")]
    public string PostType { get; set; }
    [JsonProperty("url")]
    public string Url { get; set; }
}
public class ResponseData
{
    [JsonProperty("timestamp")]
    public string Timestamp { get; set; }
    [JsonProperty("items")]
    public List<IPost> Items { get; set; }
}
