11 lines
188 B
C#
11 lines
188 B
C#
using System;
|
|
|
|
namespace Antmicro.OptionsParser
|
|
{
|
|
[AttributeUsage(AttributeTargets.Property | AttributeTargets.Field)]
|
|
public class RequiredAttribute : Attribute
|
|
{
|
|
}
|
|
}
|
|
|