namespace Nerfed.Builder; public class ArgumentAttribute : Attribute { public string ArgKey { get; } public ArgumentAttribute(string argKey) { ArgKey = argKey; } }