Added Files

This commit is contained in:
2025-10-27 18:48:23 -04:00
commit ab916dc82a
89 changed files with 7575 additions and 0 deletions

27
PepLib.Core/Spacing.cs Normal file
View File

@@ -0,0 +1,27 @@
namespace PepLib
{
public class Spacing
{
public Spacing()
: this(0, 0, 0, 0)
{
}
public Spacing(double l, double b, double r, double t)
{
Left = l;
Bottom = b;
Right = r;
Top = t;
}
public double Left { get; set; }
public double Bottom { get; set; }
public double Right { get; set; }
public double Top { get; set; }
}
}