wabbajack/Wabbajack.VirtualFileSystem/IndexedVirtualFile.cs

17 lines
462 B
C#
Raw Normal View History

using System.Collections.Generic;
2020-03-22 15:50:53 +00:00
using Wabbajack.Common;
namespace Wabbajack.VirtualFileSystem
{
/// <summary>
/// Response from the Build server for a indexed file
/// </summary>
public class IndexedVirtualFile
{
2020-03-24 12:21:19 +00:00
public IPath Name { get; set; }
2020-03-22 15:50:53 +00:00
public Hash Hash { get; set; }
public long Size { get; set; }
public List<IndexedVirtualFile> Children { get; set; } = new List<IndexedVirtualFile>();
}
}