IBugReportService.cs 234 B

123456789
  1. using System;
  2. namespace SRDebugger.Services
  3. {
  4. public interface IBugReportService
  5. {
  6. void SendBugReport(BugReport report, BugReportCompleteCallback completeHandler, BugReportProgressCallback progressCallback = null);
  7. }
  8. }