TextBlockSectionLink.cs 253 B

12345678910
  1. using QuestPDF.Infrastructure;
  2. namespace QuestPDF.Elements.Text.Items
  3. {
  4. internal sealed class TextBlockSectionLink : TextBlockSpan
  5. {
  6. public string SectionName { get; set; }
  7. public int ParagraphBeginIndex { get; set; }
  8. }
  9. }