9 lines
163 B
C#
9 lines
163 B
C#
namespace Lib.Architecture.BuildingBlocks
|
|
{
|
|
public interface IForbiddenPort
|
|
{
|
|
void Forbidden();
|
|
void Forbidden(string message);
|
|
}
|
|
}
|