17 lines
548 B
C#
17 lines
548 B
C#
using System.Collections.Generic;
|
|
using Microsoft.SyndicationFeed;
|
|
|
|
namespace TerribleDev.Blog.Web.Models
|
|
{
|
|
public class PostCache
|
|
{
|
|
public IList<IPost> PostsAsLists { get; set;}
|
|
public IDictionary<string, IList<IPost>> TagsToPosts { get; set; }
|
|
public IDictionary<string, IPost> UrlToPost { get; set; }
|
|
public IDictionary<int, IList<IPost>> PostsByPage { get; set; }
|
|
public IList<SyndicationItem> PostsAsSyndication { get; set; }
|
|
|
|
public Schema.NET.Blog BlogLD { get; set; }
|
|
|
|
}
|
|
} |