using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace RealTimeGraphX.EventArguments
{
///
/// Represents an input change event arguments.
///
/// The type of the input component.
///
public class InputChangedEventArgs : EventArgs where TIn : IGraphComponent
{
///
/// Gets or sets the input graph component.
///
public TIn Input { get; set; }
///
/// Initializes a new instance of the class.
///
/// The input.
public InputChangedEventArgs(TIn input)
{
Input = input;
}
}
}