Block.cs 492 B

123456789101112131415161718192021222324252627
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. using GxPress.Common.RichText;
  5. namespace GxPress.Entity
  6. {
  7. /// <summary>
  8. /// 内容块
  9. /// </summary>
  10. public class Block
  11. {
  12. /// <summary>
  13. /// 类型
  14. /// </summary>
  15. /// <value></value>
  16. public string Type { get; set; }
  17. /// <summary>
  18. /// 数据
  19. /// </summary>
  20. /// <value></value>
  21. public RichTextData Data { get; set; }
  22. }
  23. }