mirror of
https://github.com/wabbajack-tools/wabbajack.git
synced 2024-08-30 18:42:17 +00:00
17 lines
448 B
C#
17 lines
448 B
C#
using Wabbajack.DTOs.JsonConverters;
|
|
using Wabbajack.Hashing.xxHash64;
|
|
using Wabbajack.Paths;
|
|
|
|
namespace Wabbajack.DTOs.Directives;
|
|
|
|
[JsonName("PatchedFromArchive")]
|
|
[JsonAlias("PatchedFromArchive, Wabbajack.Lib")]
|
|
public class PatchedFromArchive : FromArchive
|
|
{
|
|
public Hash FromHash { get; set; }
|
|
|
|
/// <summary>
|
|
/// The file to apply to the source file to patch it
|
|
/// </summary>
|
|
public RelativePath PatchID { get; set; }
|
|
} |