using System; using System.Collections.Generic; namespace SplineMesh { public class ListChangedEventArgs : EventArgs { public ListChangeType type; public List newItems; public List removedItems; public int insertIndex; public int removeIndex; } }