Content.cs 555 B

123456789101112131415161718192021
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace TEAMModelOS.Test.PPTX.PresentationElement
  5. {
  6. public class Content
  7. {
  8. public string type { get; set; }
  9. //文本 /或图片base64
  10. public string text { get; set; }
  11. //文本颜色
  12. public string textColor { get; set; }
  13. //填充颜色
  14. public string fillColor { get; set; }
  15. //图形是否闭合
  16. public bool complete { get; set; }
  17. //字体大小
  18. public int fontSize { get; set; }
  19. }
  20. }