VpSharp/VpSharp.Commands/Attributes/RemainderAttribute.cs

10 lines
275 B
C#
Raw Permalink Normal View History

2022-11-27 20:43:21 +00:00
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
{
}