mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-20 12:58:39 +00:00
12 lines
No EOL
360 B
C#
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";
|
|
}
|
|
} |