using System; using System.Collections.Generic; using System.Drawing; using System.Linq; using System.Text; using System.Threading.Tasks; namespace SmartCoalApplication.Core { public sealed class MovingEventArgs : EventArgs { private Rectangle rectangle; public Rectangle Rectangle { get { return this.rectangle; } set { this.rectangle = value; } } public MovingEventArgs(Rectangle rect) { this.rectangle = rect; } } }