using System.Drawing; namespace Netron.Diagramming.Core { /// /// The interface of something that can be painted on the canvas. /// public interface IPaintable { /// /// The bounds of the paintable entity /// Rectangle Rectangle { get; } /// /// Paints the entity using the given graphics object /// /// void Paint(Graphics g); } }