using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace RealTimeGraphX.EventArguments
{
///
/// Represents an changed event arguments.
///
///
public class TransformChangedEventArgs : EventArgs
{
///
/// Gets or sets the graph transform.
///
public GraphTransform Transform { get; set; }
}
}