8 lines
128 B
C#
8 lines
128 B
C#
namespace Speckle.Connectors.Autocad.Interfaces;
|
|
|
|
internal interface IAutocadPlugin
|
|
{
|
|
void Initialise();
|
|
void Shutdown();
|
|
}
|