laatzen/Common/CommonCore/Exceptions/ICommonException.cs
2021-10-01 11:09:20 +02:00

13 lines
194 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace Xylem.Common.CommonCore.Exceptions
{
interface ICommonException
{
string GetHelpText();
}
}