Files
DP44/Common/DTS.Common/Interface/IPluginComponent.cs

15 lines
332 B
C#
Raw Permalink Normal View History

2026-04-17 14:55:32 -04:00

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; }
}
}