wabbajack/Wabbajack.DTOs/ModList/Directives/IgnoredDirectly.cs
2021-09-27 06:42:46 -06:00

11 lines
255 B
C#

using Wabbajack.DTOs.JsonConverters;
namespace Wabbajack.DTOs.Directives
{
[JsonName("IgnoredDirectly")] // Should never make it into a JSON file
public class IgnoredDirectly : Directive
{
public string Reason = string.Empty;
}
}