using System.Drawing; namespace Netron.Diagramming.Core { /// /// Bare bone structure of an entity related to a scaling transformation /// public struct EntityBone { /// /// the rectangle of the entity /// private Rectangle mRectangle; /// /// the connector points /// private Point[] mConnectorPoints; /// /// Gets or sets the rectangle. /// /// The rectangle. public Rectangle Rectangle { get { return mRectangle; } set { mRectangle = value; } } /// /// Gets or sets the connector points. /// /// The connector points. public Point[] ConnectorPoints { get { return mConnectorPoints; } set { mConnectorPoints = value; } } } }