1using System; 2 3namespace Unity.VisualScripting 4{ 5 public interface IGraphElementCollection<T> : IKeyedCollection<Guid, T>, INotifyCollectionChanged<T> where T : IGraphElement 6 { 7 } 8}