using System; namespace Wabbajack.Common.Serialization.Json { /// /// Defines the polymorphic name of this type when serialized via Json. This value will /// be stored in the "_wjType" field. /// public class JsonNameAttribute : Attribute { public string Name { get; } public JsonNameAttribute(string name) { Name = name; } } }