wabbajack/Wabbajack.VirtualFileSystem/IndexedVirtualFile.cs
Timothy Baldridge 2b45210159 One test passes
2020-04-03 16:37:28 -06:00

17 lines
462 B
C#

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