Files
QuestPDF/QuestPDF/Infrastructure/IComponent.cs
T
2021-01-16 01:31:39 +01:00

19 lines
253 B
C#

using QuestPDF.Elements;
namespace QuestPDF.Infrastructure
{
interface ISlot
{
}
class Slot : Container, ISlot
{
}
public interface IComponent
{
void Compose(IContainer container);
}
}