wabbajack/Wabbajack.DTOs/ModList/Directive.cs

16 lines
386 B
C#
Raw Normal View History

2021-09-27 12:42:46 +00:00
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; }
}
}