mirror of
https://github.com/wabbajack-tools/wabbajack.git
synced 2024-08-30 18:42:17 +00:00
16 lines
441 B
C#
16 lines
441 B
C#
using System.Collections.Generic;
|
|
|
|
namespace Wabbajack.VirtualFileSystem
|
|
{
|
|
/// <summary>
|
|
/// Response from the Build server for a indexed file
|
|
/// </summary>
|
|
public class IndexedVirtualFile
|
|
{
|
|
public string Name { get; set; }
|
|
public string Hash { get; set; }
|
|
public long Size { get; set; }
|
|
public List<IndexedVirtualFile> Children { get; set; } = new List<IndexedVirtualFile>();
|
|
}
|
|
}
|