Files
cms_thermo_active/Client/Browser_Tools/SubModels/FSItem.cs
T
2017-12-21 08:30:49 +01:00

15 lines
292 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace CMS_Client.Browser_Tools.SubModels
{
public class FSItem
{
public String Name { get; set; }
public bool IsDirectory { get; set; }
}
}