Code/Dependencies/DotNetGraph/Core/IDotElement.cs
using System.Threading.Tasks;
using Nodebox.Dependencies.DotNetGraph.Compilation;

namespace Nodebox.Dependencies.DotNetGraph.Core {
    public interface IDotElement {
        Task CompileAsync(CompilationContext context);
    }
}