using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace PackingPress.Common { public class InstallEntity { public bool IsDirectory { get; set; } public string Path { get; set; } public string FullPath { get; set; } } }