123456789101112131415161718192021222324252627 |
- using System;
- using System.Collections.Generic;
- using System.Text;
- using GxPress.Common.RichText;
- namespace GxPress.Entity
- {
- /// <summary>
- /// 内容块
- /// </summary>
- public class Block
- {
- /// <summary>
- /// 类型
- /// </summary>
- /// <value></value>
- public string Type { get; set; }
- /// <summary>
- /// 数据
- /// </summary>
- /// <value></value>
- public RichTextData Data { get; set; }
- }
- }
|