mirror of
https://github.com/wabbajack-tools/wabbajack.git
synced 2024-08-30 18:42:17 +00:00
13 lines
275 B
C#
13 lines
275 B
C#
using Wabbajack.Common;
|
|
|
|
namespace Wabbajack.VirtualFileSystem
|
|
{
|
|
public class PortableFile
|
|
{
|
|
public IPath Name { get; set; }
|
|
public Hash Hash { get; set; }
|
|
public Hash ParentHash { get; set; }
|
|
public long Size { get; set; }
|
|
}
|
|
}
|