123456789101112131415161718192021222324252627 |
- using System;
- using System.Collections.Generic;
- using System.Text;
- using GxPress.Common.RichText;
- namespace GxPress.Entity
- {
-
-
-
- public class Block
- {
-
-
-
-
- public string Type { get; set; }
-
-
-
-
- public RichTextData Data { get; set; }
- }
- }
|