kCura.WinEDDS.ArtifactCacheItem
namespace kCura.WinEDDS
{
public class ArtifactCacheItem
{
public string Name { get; set; }
public string Path { get; set; }
public int ArtifactID { get; set; }
public ArtifactCacheItem[] Children { get; set; }
public void AddChild(ArtifactCacheItem item);
public ArtifactCacheItem(string name, string path, int artifactID);
}
}