namespace QwirkleClassLibrary { public class PlaceTileNotifiedEventArgs : EventArgs { public Tile tile { get; private set; } public string reason { get; private set; } public PlaceTileNotifiedEventArgs(Tile tile, string reason) { this.tile = tile; this.reason = reason; } } }