using System;
namespace Coldairarrow.Util
{
public class MapAttribute : Attribute
{
public MapAttribute(params Type[] targetTypes)
{
TargetTypes = targetTypes;
}
public Type[] TargetTypes { get; }
}
}