22 lines
309 B
C#
22 lines
309 B
C#
namespace CPF.Mac.AppKit
|
|
{
|
|
public struct NSEdgeInsets
|
|
{
|
|
public double Top;
|
|
|
|
public double Left;
|
|
|
|
public double Bottom;
|
|
|
|
public double Right;
|
|
|
|
public NSEdgeInsets(double top, double left, double bottom, double right)
|
|
{
|
|
Top = top;
|
|
Left = left;
|
|
Bottom = bottom;
|
|
Right = right;
|
|
}
|
|
}
|
|
}
|