This commit is contained in:
Tommy Parnell
2015-10-04 21:53:01 -04:00
commit a1199fe9fe
37 changed files with 1653 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
namespace DotNetMashup.Web.Model
{
//stolen idea from: https://github.com/NancyFx/Nancy.Blog/blob/master/src/Nancy.Blog/Model/MetaData.cs
public class MetaData : IFeedData
{
public string FeedUrl { get; set; }
public string Author { get; set; }
public string AuthorEmail { get; set; }
public string GravatarUrl { get; set; }
public string Id { get; set; }
}
}