init
This commit is contained in:
12
src/DotNetMashup.Web/Model/MetaData.cs
Normal file
12
src/DotNetMashup.Web/Model/MetaData.cs
Normal 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; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user