mirror of
https://github.com/oliverbooth/VpSharp
synced 2024-11-09 22:55:42 +00:00
10 lines
275 B
C#
10 lines
275 B
C#
namespace VpSharp.Commands.Attributes;
|
|
|
|
/// <summary>
|
|
/// Indicates that a string parameter should consume the remainder of the arguments as one string.
|
|
/// </summary>
|
|
[AttributeUsage(AttributeTargets.Parameter)]
|
|
public sealed class RemainderAttribute : Attribute
|
|
{
|
|
}
|