Jo Shields a575963da9 Imported Upstream version 3.6.0
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
2014-08-13 10:39:27 +01:00

24 lines
519 B
C#

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; }
}
}