Cosmos/source/Indy.IL2CPU.Plugs/PlugAttribute.cs
2007-11-24 16:21:01 +00:00

12 lines
No EOL
360 B
C#

using System;
namespace Indy.IL2CPU.Plugs {
[AttributeUsage(AttributeTargets.Class, AllowMultiple = false, Inherited = false)]
public sealed class PlugAttribute: Attribute {
public Type Target;
public string TargetName;
public const string TargetPropertyName = "Target";
public const string TargetNamePropertyName = "TargetName";
}
}