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