15 lines
332 B
C#
15 lines
332 B
C#
|
|
namespace DTS.Common.Interface
|
|
{
|
|
/// <summary>
|
|
/// All plug-in modules implement IPluginComponent interface
|
|
/// </summary>
|
|
public interface IPluginComponent
|
|
{
|
|
/// <summary>
|
|
/// Program ID used to instantiate object
|
|
/// </summary>
|
|
string ProgId { get; }
|
|
}
|
|
}
|