elliebot/src/Ellie.Marmalade/Attributes/leftoverAttribute.cs

10 lines
186 B
C#

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