RichTextData.cs 493 B

123456789101112131415161718192021222324
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace GxPress.Common.RichText
  5. {
  6. public class RichTextData
  7. {
  8. public FileUrl File { get; set; }
  9. public string Caption { get; set; }
  10. public bool WithBorder { get; set; }
  11. public bool Stretched { get; set; }
  12. public bool WithBackground { get; set; }
  13. public string Text { get; set; }
  14. }
  15. public class FileUrl
  16. {
  17. public string Url { get; set; }
  18. }
  19. }