mirror of
https://github.com/wabbajack-tools/wabbajack.git
synced 2024-08-30 18:42:17 +00:00
16 lines
411 B
C#
16 lines
411 B
C#
|
using System.Collections.Generic;
|
||
|
using Wabbajack.DTOs.Texture;
|
||
|
using Wabbajack.Hashing.xxHash64;
|
||
|
using Wabbajack.Paths;
|
||
|
|
||
|
namespace Wabbajack.DTOs.Vfs;
|
||
|
|
||
|
public class IndexedVirtualFile
|
||
|
{
|
||
|
public IPath Name { get; set; }
|
||
|
public Hash Hash { get; set; }
|
||
|
|
||
|
public ImageState? ImageState { get; set; }
|
||
|
public long Size { get; set; }
|
||
|
public List<IndexedVirtualFile> Children { get; set; } = new();
|
||
|
}
|