Created
November 18, 2018 20:32
-
-
Save fluxdigital/5db5594b680b9a8e700d8032e439c655 to your computer and use it in GitHub Desktop.
Telligent Community Blog Post
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class TcBlogPost : TcPostBase | |
{ | |
public string Slug { get; set; } | |
public string Title { get; set; } | |
public string TitleUrl { get; set; } | |
public string PublishedDate { get; set; } | |
public string ExcerptSize { get; set; } | |
public string UsePostSummary { get; set; } | |
public string GeneratePostSummary { get; set; } | |
public string BlogId { get; set; } | |
public string IsApproved { get; set; } | |
public string IsCrossPostingEnabled { get; set; } | |
public string IsPostEnabled { get; set; } | |
public string IsExternal { get; set; } | |
public string CommentCount { get; set; } | |
public string Views { get; set; } | |
public string PostImageFile { get; set; } | |
public string PostImageUrl { get; set; } | |
public string OpenGraphTitle { get; set; } | |
public string OpenGraphDescription { get; set; } | |
public string OpenGraphImage { get; set; } | |
public string MetaKeywords { get; set; } | |
public string MetaDescription { get; set; } | |
public string MetaTitle { get; set; } | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment