Files
blog.terrible.dev/src/TerribleDev.Blog.Web/Models/PostContent.cs
2022-03-02 14:08:24 -05:00

20 lines
593 B
C#

using System;
using System.Collections.Generic;
using Microsoft.AspNetCore.Html;
using Schema.NET;
namespace TerribleDev.Blog.Web.Models
{
public class PostContent : IPostContent
{
public HtmlString Content { get; set; }
public HtmlString Summary { get; set; }
public string ContentPlain { get; set; }
public string SummaryPlain { get; set; }
public string SummaryPlainShort { get; set; }
public IList<string> Images { get; set; }
public BlogPosting JsonLD { get; set; }
public string JsonLDString { get; set; }
}
}