23 lines
474 B
C#
23 lines
474 B
C#
namespace CatherineLynwood.Models
|
|
{
|
|
public class BlogAdminIndexItem
|
|
{
|
|
#region Public Properties
|
|
|
|
public int BlogID { get; set; }
|
|
|
|
public string BlogUrl { get; set; }
|
|
|
|
public bool Draft { get; set; }
|
|
|
|
public string IndexText { get; set; }
|
|
|
|
public DateTime PublishDate { get; set; }
|
|
|
|
public string SubTitle { get; set; }
|
|
|
|
public string Title { get; set; }
|
|
|
|
#endregion Public Properties
|
|
}
|
|
} |