Files
blog.terrible.dev/src/TerribleDev.Blog.Web/Models/PostSettings.cs
2019-01-20 17:29:14 -05:00

20 lines
606 B
C#

using System;
using System.Collections.Generic;
namespace TerribleDev.Blog.Web.Models
{
public class PostSettings
{
public List<string> tags { get; set; }
public string title { get; set; }
public string permalink { get; set; }
public DateTime date { get; set; }
public DateTime updated { get; set; }
public string id { get; set; }
public string thumbnail_image { get; set; }
public string thumbnailImage { get; set; }
public string thumbnail_image_position { get; set; }
public string layout { get; set; }
}
}