10 lines
116 B
C#
10 lines
116 B
C#
|
#if !NET472
|
||
|
#endif
|
||
|
|
||
|
namespace RhSolutions.Tools;
|
||
|
|
||
|
internal interface ITool: IDisposable
|
||
|
{
|
||
|
public void Execute();
|
||
|
}
|