common/CommonCore/Exceptions/ICommonException.cs
2026-04-23 17:50:07 +02:00

11 lines
141 B
C#

using System;
namespace Xylem.Common.CommonCore.Exceptions
{
interface ICommonException
{
String GetHelpText();
}
}