using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Active_Client.Browser_Tools.Models { public class FileModel { public string Name; public string AbsolutePath; public string Path; public bool IsDirectory; public bool IsJob; public bool IsMain; public bool FileExist; } }