summaryrefslogtreecommitdiff
path: root/getopt/Arg.cs
blob: 0b86cad7ecf3555c44754b8fe3f98cfde95bcc55 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
using System;

namespace Gnu
{
	/// <summary>
	/// An argument for GetOpt
	/// </summary>
	public class Arg
	{
		public char Flag;
		public bool TakesParameter = false;

		public string Parameter = "";
	}
}