using Novacode;
namespace Hotline.Share.Dtos.ExportWord
{
public class ExportPicture : IWordElement
{
///
///
///
public Stream PictureData { get; set; }
///
///
///
public string PictureUrl { get; set; }
///
///
///
public int Width { get; set; } = 300;
///
///
///
public int Height { get; set; } = 200;
}
public class ExportParagraph : IWordElement
{
///
///
///
public ExportRun Run { get; set; }
///
///
///
public Alignment Alignment { get; set; } = Alignment.center;
}
public class ExportComplex : IWordElement
{
///
///
///
public List Elements { get; set; } = new List();
}
}