PageRenderTime 41ms CodeModel.GetById 17ms RepoModel.GetById 0ms app.codeStats 0ms

/BlogEngine/DotNetSlave.BusinessLogic/API/BlogML/BlogMLExtendedPost.cs

#
C# | 36 lines | 13 code | 5 blank | 18 comment | 0 complexity | 3176a9654f4cc0506a78519af930bd5b MD5 | raw file
Possible License(s): LGPL-2.1, Apache-2.0, BSD-3-Clause
  1. namespace BlogEngine.Core.API.BlogML
  2. {
  3. using global::BlogML.Xml;
  4. using System.Collections.Generic;
  5. /// <summary>
  6. /// Extended BlogML post
  7. /// </summary>
  8. public class BlogMlExtendedPost
  9. {
  10. /// <summary>
  11. /// Gets or sets blog post
  12. /// </summary>
  13. public BlogMLPost BlogPost { get; set; }
  14. /// <summary>
  15. /// Gets or sets post URL
  16. /// </summary>
  17. public string PostUrl { get; set; }
  18. /// <summary>
  19. /// Gets or sets post tags
  20. /// </summary>
  21. public StateList<string> Tags { get; set; }
  22. /// <summary>
  23. /// Gets or sets post categories
  24. /// </summary>
  25. public StateList<Category> Categories { get; set; }
  26. /// <summary>
  27. /// Post comments
  28. /// </summary>
  29. public List<Comment> Comments { get; set; }
  30. }
  31. }