summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.UITest.TestCloud/Mono.Options/OptionContext.cs
blob: 4a7183607333ddfeeee3a5b31625b177599547df (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
namespace Mono.Options
{
	public class OptionContext
	{
		public OptionContext(OptionSet set)
		{
			OptionSet = set;
			OptionValues = new OptionValueCollection(this);
		}

		public Option Option { get; set; }

		public string OptionName { get; set; }

		public int OptionIndex { get; set; }

		public OptionSet OptionSet { get; }

		public OptionValueCollection OptionValues { get; }
	}
}