using System.Collections.Generic;
namespace Wabbajack.VirtualFileSystem
{
///
/// Response from the Build server for a indexed file
///
public class IndexedVirtualFile
{
public string Name { get; set; }
public string Hash { get; set; }
public long Size { get; set; }
public List Children { get; set; } = new List();
}
}