Files
Interfaces/Interfaces/IReportingHandler.cs

6 lines
125 B
C#

namespace Interfaces;
public interface IReportingHandler
{
public void Report(IReportable reportable, string note);
}