CatherineLynwood/CatherineLynwood/Models/BlogAdminIndexItem.cs
2025-08-02 21:45:16 +01:00

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