using System; using System.Collections.Generic; using System.Text; namespace GxPress.Common.RichText { public class RichTextData { public FileUrl File { get; set; } public string Caption { get; set; } public bool WithBorder { get; set; } public bool Stretched { get; set; } public bool WithBackground { get; set; } public string Text { get; set; } } public class FileUrl { public string Url { get; set; } } }