Files

9 lines
154 B
C#

namespace EasyChart
{
internal interface IChartModule
{
void Bind(ChartElement owner, ChartKernel kernel);
void Unbind();
}
}