using System.Collections.Generic; namespace GxPress.Entity.Article { public class Marks { public string type { get; set; } public Attrs attrs { get; set; } } public class Attrs { /// /// /// public string src { get; set; } public string fontSize { get; set; } public string fontColor { get; set; } } public class ContentItemChild { /// /// /// public string type { get; set; } /// /// /// public Attrs attrs { get; set; } public string text { get; set; } public List marks { get; set; } } public class ContentItem { /// /// /// public string type { get; set; } /// /// /// public List content { get; set; } } public class ArticleContent { /// /// /// public string type { get; set; } /// /// /// public List content { get; set; } } }