6 lines
125 B
C#
6 lines
125 B
C#
namespace Interfaces;
|
|
|
|
public interface IReportingHandler
|
|
{
|
|
public void Report(IReportable reportable, string note);
|
|
} |