using System; namespace Sonex.Client.Controls.TimelineGrid; public sealed class TimelineGridRowClickedEventArgs : EventArgs { public TimelineGridRowClickedEventArgs(TimelineGridRow row, int rowIndex) { Row = row; RowIndex = rowIndex; } public TimelineGridRow Row { get; } public int RowIndex { get; } }