mirror of
https://github.com/wabbajack-tools/wabbajack.git
synced 2024-08-30 18:42:17 +00:00
13 lines
344 B
C#
13 lines
344 B
C#
using System;
|
|
using Wabbajack.DTOs.JsonConverters;
|
|
using Wabbajack.Paths;
|
|
|
|
namespace Wabbajack.DTOs.Directives;
|
|
|
|
[JsonName("MergedPatch, Wabbajack.Lib")]
|
|
[JsonAlias("MergedPatch")]
|
|
public class MergedPatch : Directive
|
|
{
|
|
public RelativePath PatchID { get; set; }
|
|
public SourcePatch[] Sources { get; set; } = Array.Empty<SourcePatch>();
|
|
} |