Cosmos/source/Indy.IL2CPU.IL/Attributes/PlugAttribute.cs
2007-11-19 14:57:23 +00:00

15 lines
No EOL
444 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Indy.IL2CPU.IL {
[AttributeUsage(AttributeTargets.Class, AllowMultiple = false, Inherited = false)]
public sealed class PlugAttribute: Attribute {
public Type Target;
public PlugScopeEnum Scope = PlugScopeEnum.All;
public const string ScopePropertyName = "Scope";
public const string TargetPropertyName = "Target";
}
}