mirror of
https://github.com/wabbajack-tools/wabbajack.git
synced 2024-08-30 18:42:17 +00:00
14 lines
365 B
C#
14 lines
365 B
C#
using Wabbajack.DTOs.JsonConverters;
|
|
using Wabbajack.Paths;
|
|
|
|
namespace Wabbajack.DTOs.Directives;
|
|
|
|
[JsonName("InlineFile")]
|
|
[JsonAlias("InlineFile, Wabbajack.Lib")]
|
|
public class InlineFile : Directive
|
|
{
|
|
/// <summary>
|
|
/// Data that will be written as-is to the destination location;
|
|
/// </summary>
|
|
public RelativePath SourceDataID { get; set; }
|
|
} |