wabbajack/Wabbajack.DTOs/ModList/Directives/IgnoredDirectly.cs

11 lines
255 B
C#
Raw Normal View History

2021-09-27 12:42:46 +00:00
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;
}
}