/BlogEngine/DotNetSlave.BusinessLogic/API/BlogML/BlogMLExtendedPost.cs
# · C# · 36 lines · 13 code · 5 blank · 18 comment · 0 complexity · 3176a9654f4cc0506a78519af930bd5b MD5 · raw file
- namespace BlogEngine.Core.API.BlogML
- {
- using global::BlogML.Xml;
- using System.Collections.Generic;
-
- /// <summary>
- /// Extended BlogML post
- /// </summary>
- public class BlogMlExtendedPost
- {
- /// <summary>
- /// Gets or sets blog post
- /// </summary>
- public BlogMLPost BlogPost { get; set; }
-
- /// <summary>
- /// Gets or sets post URL
- /// </summary>
- public string PostUrl { get; set; }
-
- /// <summary>
- /// Gets or sets post tags
- /// </summary>
- public StateList<string> Tags { get; set; }
-
- /// <summary>
- /// Gets or sets post categories
- /// </summary>
- public StateList<Category> Categories { get; set; }
-
- /// <summary>
- /// Post comments
- /// </summary>
- public List<Comment> Comments { get; set; }
- }
- }