mirror of
https://github.com/wabbajack-tools/wabbajack.git
synced 2024-08-30 18:42:17 +00:00
14 lines
302 B
C#
14 lines
302 B
C#
using Wabbajack.DTOs.JsonConverters;
|
|
|
|
namespace Wabbajack.DTOs.Directives
|
|
{
|
|
|
|
public enum PropertyType { Banner, Readme }
|
|
|
|
[JsonName("PropertyFile")]
|
|
[JsonAlias("PropertyFile, Wabbajack.Lib")]
|
|
public class PropertyFile : InlineFile
|
|
{
|
|
public PropertyType Type;
|
|
}
|
|
} |