Code/TypeSelectAttribute.cs
using System;

namespace TheDimin
{
	[AttributeUsage( AttributeTargets.Property | AttributeTargets.Field )]
	public class TypeSelectorAttribute : Attribute
	{
		public Type TargetType { get; set; }
	}
}