// (c) Copyright Microsoft Corporation.
// This source is subject to the Microsoft Public License (Ms-PL).
// Please see http://go.microsoft.com/fwlink/?LinkID=131993 for details.
// All other rights reserved.
using System;
namespace Microsoft.Test.CommandLineParsing
{
///
/// Defines whether a property value is required to be specified.
///
[AttributeUsage(AttributeTargets.Property, Inherited = true, AllowMultiple = false)]
public sealed class RequiredAttribute : Attribute
{
///
public RequiredAttribute()
{
}
}
}