using System; using System.Drawing; namespace GoldPrinter { public interface IDraw { Graphics Graphics { get; set; } Rectangle Rectangle { get; set; } void Draw(); } }