mirror of
https://github.com/wabbajack-tools/wabbajack.git
synced 2024-08-30 18:42:17 +00:00
15 lines
348 B
C#
15 lines
348 B
C#
using Wabbajack.Hashing.xxHash64;
|
|
using Wabbajack.Paths;
|
|
|
|
namespace Wabbajack.DTOs;
|
|
|
|
public abstract class Directive
|
|
{
|
|
public Hash Hash { get; set; }
|
|
public long Size { get; set; }
|
|
|
|
/// <summary>
|
|
/// location the file will be copied to, relative to the install path.
|
|
/// </summary>
|
|
public RelativePath To { get; set; }
|
|
} |