BugReport.cs 338 B

123456789101112131415161718
  1. using System;
  2. using System.Collections.Generic;
  3. namespace SRDebugger.Services
  4. {
  5. public class BugReport
  6. {
  7. public List<ConsoleEntry> ConsoleLog;
  8. public string Email;
  9. public byte[] ScreenshotData;
  10. public Dictionary<string, Dictionary<string, object>> SystemInformation;
  11. public string UserDescription;
  12. }
  13. }