Files
DotNetMashup/src/DotNetMashup.Web/Model/IBlogMetaData.cs
Tommy Parnell a46940393d implement rss
2015-10-09 21:30:31 -04:00

12 lines
316 B
C#

namespace DotNetMashup.Web.Model
{
public interface IBlogMetaData
{
string FeedUrl { get; set; }
string AuthorName { get; set; }
string AuthorEmail { get; set; }
string ImageUrl { get; set; }
string Id { get; set; }
string BlogHomepage { get; set; }
}
}