Files
blog.terrible.dev/src/TerribleDev.Blog.Web/Models/PostCache.cs
Tommy Parnell 71d8f2455d breadcrumbs
2022-03-01 18:37:28 -05:00

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; }
}
}