a0b2efba38
And refactor
20 lines
438 B
C#
20 lines
438 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 FileModel
|
|
{
|
|
public string Name;
|
|
public string AbsolutePath;
|
|
public string Path;
|
|
public bool IsDirectory;
|
|
public bool IsJob;
|
|
public bool IsMain;
|
|
public bool FileExist;
|
|
}
|
|
}
|