Skip to content

Instantly share code, notes, and snippets.

@fluxdigital
Created November 18, 2018 20:34
Show Gist options
  • Save fluxdigital/8a1eebf3645a8305aebe38ac4faca49a to your computer and use it in GitHub Desktop.
Save fluxdigital/8a1eebf3645a8305aebe38ac4faca49a to your computer and use it in GitHub Desktop.
Base Telligent Community Post
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