8 lines
210 B
C#
8 lines
210 B
C#
namespace SRDebugger.Services
|
|
{
|
|
public interface IBugReportService
|
|
{
|
|
void SendBugReport(BugReport report, BugReportCompleteCallback completeHandler, BugReportProgressCallback progressCallback = null);
|
|
}
|
|
}
|