wabbajack/Wabbajack.DTOs/ModList/Directives/IgnoredDirectly.cs
2021-10-23 10:51:17 -06:00

9 lines
232 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;
}