10 lines
200 B
C#
10 lines
200 B
C#
using QuestPDF.Drawing;
|
|
|
|
namespace QuestPDF.Infrastructure
|
|
{
|
|
public interface IDocument
|
|
{
|
|
DocumentMetadata GetMetadata();
|
|
void Compose(IDocumentContainer container);
|
|
}
|
|
} |