FolderInfo
namespace kCura.WinEDDS
{
public class FolderInfo
{
public int ArtifactID;
public string Type;
public string Path;
public FolderInfo(int nodeArtifactId, string nodeType)
{
ArtifactID = nodeArtifactId;
Type = nodeType;
}
}
}