Files
nadekobot/src/Nadeko.Medusa/Attributes/leftoverAttribute.cs
2024-04-27 22:45:14 +00:00

10 lines
187 B
C#

namespace NadekoBot.Medusa;
/// <summary>
/// Marks the parameter to take
/// </summary>
[AttributeUsage(AttributeTargets.Parameter)]
public class leftoverAttribute : Attribute
{
}