using System; using System.Collections.Generic; namespace Core.Common.Controls.Swf.Table { public class TableSelectionChangedEventArgs : EventArgs { /// /// Selection Changed EventArgs /// public TableSelectionChangedEventArgs(IList cells) { Cells = cells; } public IList Cells { get; private set; } } }