using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Client2020.BrowserTools.Models { class ScreenshotController { public String path; public ScreenshotController(String path) { this.path = path; } } }