Files

15 lines
270 B
C#
Raw Permalink Normal View History

using System;
namespace Antmicro.OptionsParser
{
public class UnexpectedArgument : IUnexpectedArgument
{
public UnexpectedArgument(string value)
{
Value = value;
}
public string Value { get; private set;}
}
}