DocumentSnapshot.cs 444 B

12345678910111213141516171819
  1. using SkiaSharp;
  2. namespace QuestPDF.Previewer;
  3. internal class DocumentSnapshot
  4. {
  5. public bool DocumentContentHasLayoutOverflowIssues { get; set; }
  6. public ICollection<PageSnapshot> Pages { get; set; }
  7. public class PageSnapshot
  8. {
  9. public string Id { get; set; }
  10. public float Width { get; set; }
  11. public float Height { get; set; }
  12. public SKPicture Picture { get; set; }
  13. }
  14. }