Files
DP44/Common/DTS.CommonCore/.svn/pristine/0b/0b25d4ccd9c8401252117dbd35798f9813d356ca.svn-base

15 lines
332 B
Plaintext
Raw 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; }
}
}