Files
nadekobot/src/Nadeko.Medusa/Attributes/leftoverAttribute.cs
2022-04-16 12:44:46 +00:00

10 lines
183 B
C#

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