PageRenderTime 46ms CodeModel.GetById 19ms RepoModel.GetById 0ms app.codeStats 0ms

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

#
C# | 38 lines | 13 code | 6 blank | 19 comment | 0 complexity | ec0182619aa0b14b3957d750ca212196 MD5 | raw file
Possible License(s): LGPL-2.1, Apache-2.0, BSD-3-Clause
  1. namespace BlogEngine.Core.API.MetaWeblog
  2. {
  3. /// <summary>
  4. /// MetaWeblog Category struct
  5. /// returned as an array from GetCategories
  6. /// </summary>
  7. internal struct MWACategory
  8. {
  9. #region Constants and Fields
  10. /// <summary>
  11. /// Category title
  12. /// </summary>
  13. public string description;
  14. /// <summary>
  15. /// Url to thml display of category
  16. /// </summary>
  17. public string htmlUrl;
  18. /// <summary>
  19. /// The guid of the category
  20. /// </summary>
  21. public string id;
  22. /// <summary>
  23. /// Url to RSS for category
  24. /// </summary>
  25. public string rssUrl;
  26. /// <summary>
  27. /// The title/name of the category
  28. /// </summary>
  29. public string title;
  30. #endregion
  31. }
  32. }