using System.Collections.Generic; using Microsoft.SyndicationFeed; namespace TerribleDev.Blog.Web.Models { public class PostCache { public IList PostsAsLists { get; set;} public IDictionary> TagsToPosts { get; set; } public IDictionary UrlToPost { get; set; } public IDictionary> PostsByPage { get; set; } public IList PostsAsSyndication { get; set; } public Schema.NET.Blog BlogLD { get; set; } public Schema.NET.WebSite SiteLD { get; set; } public string BlogLDString { get; set; } public string SiteLDString { get; set; } public Dictionary LandingPagesUrl { get; set; } } }