18 lines
372 B
C#
18 lines
372 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Active_Client.Browser_Tools.Models
|
|
{
|
|
public class File
|
|
{
|
|
public string Name;
|
|
public string AbsolutePath;
|
|
public string Path;
|
|
public bool IsDirectory;
|
|
public bool IsJob;
|
|
}
|
|
}
|