Files
simulation_core/lib/options-parser/Description/NumberOfElementsAttribute.cs

16 lines
262 B
C#
Raw Permalink Normal View History

using System;
namespace Antmicro.OptionsParser
{
public class NumberOfElementsAttribute : Attribute
{
public NumberOfElementsAttribute(int max)
{
Max = max;
}
public int Max { get; set; }
}
}