2021-09-27 12:42:46 +00:00
|
|
|
using Wabbajack.DTOs.JsonConverters;
|
|
|
|
using Wabbajack.Hashing.xxHash64;
|
|
|
|
using Wabbajack.Paths;
|
|
|
|
|
2021-10-23 16:51:17 +00:00
|
|
|
namespace Wabbajack.DTOs.Directives;
|
|
|
|
|
|
|
|
[JsonName("PatchedFromArchive")]
|
|
|
|
[JsonAlias("PatchedFromArchive, Wabbajack.Lib")]
|
|
|
|
public class PatchedFromArchive : FromArchive
|
2021-09-27 12:42:46 +00:00
|
|
|
{
|
2021-10-23 16:51:17 +00:00
|
|
|
public Hash FromHash { get; set; }
|
2021-09-27 12:42:46 +00:00
|
|
|
|
2021-10-23 16:51:17 +00:00
|
|
|
/// <summary>
|
|
|
|
/// The file to apply to the source file to patch it
|
|
|
|
/// </summary>
|
|
|
|
public RelativePath PatchID { get; set; }
|
2021-09-27 12:42:46 +00:00
|
|
|
}
|