Files
Samuele E. Locatelli 17156418f0 Added Screenshot
2020-10-30 12:42:40 +01:00

19 lines
336 B
C#

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;
}
}
}