namespace Misaki.GraphView.Editor { public interface IDataNodeView : IDataNodeView { /// /// The data node that the view represents. /// public T DataNode { get; } } public interface IDataNodeView { /// /// Get the data node that the view represents. /// /// public DataNode GetDataNode(); } }