Files
cms_thermo_active/Client/Browser_Tools/Models/File.cs
T
2019-04-04 18:33:44 +02:00

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