Nerfed/Nerfed.Builder/ArgumentAttribute.cs

12 lines
190 B
C#
Raw Permalink Normal View History

2024-07-06 23:33:04 +02:00
namespace Nerfed.Builder;
public class ArgumentAttribute : Attribute
{
public string ArgKey { get; }
public ArgumentAttribute(string argKey)
{
ArgKey = argKey;
}
}