Cosmos/source/Indy.IL2CPU/Plugs/PlugFieldAttribute.cs
2008-10-29 18:38:39 +00:00

29 lines
No EOL
523 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
namespace Indy.IL2CPU.Plugs {
[AttributeUsage(AttributeTargets.Class, AllowMultiple=true)]
public sealed class PlugFieldAttribute: Attribute {
public PlugFieldAttribute() {
}
public string FieldId {
get;
set;
}
public bool IsExternalValue {
get;
set;
}
public Type FieldType {
get;
set;
}
public bool IsMonoOnly = false;
public bool IsMicrosoftdotNETOnly = false;
}
}