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