summaryrefslogtreecommitdiff
path: root/mcs/class/Microsoft.Build.Framework/Microsoft.Build.Framework/TaskPropertyInfo.cs
blob: a6fbfaaf63e27b1da6b8a0d7ec600116f35cf8ff (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
using System;
using System.Collections.Generic;

namespace Microsoft.Build.Framework
{
	[Serializable]
	public class TaskPropertyInfo
	{
		public TaskPropertyInfo (string name, Type typeOfParameter, bool output, bool required)
		{
			Name = name;
			PropertyType = typeOfParameter;
			Output = output;
			Required = required;
		}
		
		public string Name { get; private set; }
		public bool Output { get; private set; }
		public Type PropertyType { get; private set; }
		public bool Required { get; private set; }
	}
}