Created
November 18, 2018 20:34
-
-
Save fluxdigital/8a1eebf3645a8305aebe38ac4faca49a to your computer and use it in GitHub Desktop.
Base Telligent Community 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 TcPostBase | |
{ | |
public string Id { get; set; } | |
public string ContentId { get; set; } | |
public string ContentTypeId { get; set; } | |
public string Url { get; set; } | |
public string Excerpt { get; set; } | |
public string Body { get; set; } | |
public string GroupId { get; set; } | |
public string IsFeatured { get; set; } | |
public string FeaturedImage { get; set; } | |
public string IsLocked { get; set; } | |
public string SearchUniqueId { get; set; } | |
public TcAuthor Author { get; set; } | |
public TcContent Content { get; set; } | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment