| 123456789101112131415161718 |
- using SkiaSharp;
- namespace QuestPDF.Previewer;
- internal class DocumentSnapshot
- {
- public ICollection<PageSnapshot> Pages { get; set; }
- public class PageSnapshot
- {
- public string Id { get; set; }
-
- public float Width { get; set; }
- public float Height { get; set; }
-
- public SKPicture Picture { get; set; }
- }
- }
|