14 lines
423 B
C#
14 lines
423 B
C#
using System.Collections.Generic;
|
|
using QuestPDF.Infrastructure;
|
|
|
|
namespace QuestPDF.Drawing.Proxy
|
|
{
|
|
public class DebugStackItem
|
|
{
|
|
public IElement Element { get; internal set; }
|
|
public Size AvailableSpace { get; internal set; }
|
|
public SpacePlan SpacePlan { get; internal set; }
|
|
|
|
public ICollection<DebugStackItem> Stack { get; internal set; } = new List<DebugStackItem>();
|
|
}
|
|
} |