using System; using System.Collections.Generic; namespace Client2020.BrowserTools.Models { public class FolderBackup { public String AbsolutePath; public FolderBackup(String Str) { this.AbsolutePath = Str; } } }