forked from EllieBotDevs/elliebot
10 lines
189 B
C#
10 lines
189 B
C#
namespace EllieBot.Marmalade;
|
|
|
|
/// <summary>
|
|
/// Marks the parameter to take
|
|
/// </summary>
|
|
[AttributeUsage(AttributeTargets.Parameter)]
|
|
public class leftoverAttribute : Attribute
|
|
{
|
|
|
|
}
|