mirror of
https://github.com/wabbajack-tools/wabbajack.git
synced 2024-08-30 18:42:17 +00:00
16 lines
271 B
C#
16 lines
271 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;
|
|
} |