namespace UglyToad.Pdf.Content
{
using System.Collections.Generic;
using Graphics.Operations;
///
///
///
///
/// This should contain a replayable stack of drawing instructions for page content
/// from a content stream in addition to lazily evaluated state such as text on the page or images.
///
public class PageContent
{
internal IReadOnlyList GraphicsStateOperations { get; set; }
}
}