Files
cms_thermo_active/Client/Browser_Tools/Models/File.cs
T
2018-09-19 16:46:44 +02:00

18 lines
369 B
C#

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