PageRenderTime 38ms CodeModel.GetById 15ms RepoModel.GetById 0ms app.codeStats 0ms

/BlogEngine/DotNetSlave.BusinessLogic/API/MetaWeblog/MWAPage.cs

#
C# | 54 lines | 17 code | 10 blank | 27 comment | 0 complexity | 9145655d8c16b169b0116eeb840d7ff1 MD5 | raw file
Possible License(s): LGPL-2.1, Apache-2.0, BSD-3-Clause
  1. namespace BlogEngine.Core.API.MetaWeblog
  2. {
  3. using System;
  4. /// <summary>
  5. /// wp Page Struct
  6. /// </summary>
  7. internal struct MWAPage
  8. {
  9. #region Constants and Fields
  10. /// <summary>
  11. /// Content of Blog Post
  12. /// </summary>
  13. public string description;
  14. /// <summary>
  15. /// Link to Blog Post
  16. /// </summary>
  17. public string link;
  18. /// <summary>
  19. /// Convert Breaks
  20. /// </summary>
  21. public string mt_convert_breaks;
  22. /// <summary>
  23. /// Page keywords
  24. /// </summary>
  25. public string mt_keywords;
  26. /// <summary>
  27. /// Display date of Blog Post (DateCreated)
  28. /// </summary>
  29. public DateTime pageDate;
  30. /// <summary>
  31. /// PostID Guid in string format
  32. /// </summary>
  33. public string pageID;
  34. /// <summary>
  35. /// Page Parent ID
  36. /// </summary>
  37. public string pageParentID;
  38. /// <summary>
  39. /// Title of Blog Post
  40. /// </summary>
  41. public string title;
  42. #endregion
  43. }
  44. }