12 lines
190 B
C#
12 lines
190 B
C#
|
namespace Nerfed.Builder;
|
||
|
|
||
|
public class ArgumentAttribute : Attribute
|
||
|
{
|
||
|
public string ArgKey { get; }
|
||
|
|
||
|
public ArgumentAttribute(string argKey)
|
||
|
{
|
||
|
ArgKey = argKey;
|
||
|
}
|
||
|
}
|