using System.Collections.Generic; using System.ComponentModel; using SciChart.Charting.Visuals.RenderableSeries; namespace MECF.Framework.UI.Client.CenterViews.Core.EventArgs { public class RenderableSeriesDeletingEventArgs : CancelEventArgs { #region Constructors public RenderableSeriesDeletingEventArgs(IEnumerable seriesCollection) { Source = new List(seriesCollection); } #endregion #region Properties public List Source { get; } #endregion } }