Cosmos/source2/IL2PCU/Cosmos.IL2CPU/Plugs/PlugFieldAttribute.cs
mterwoord_cp acaa8e0a89
2009-10-17 13:45:47 +00:00

30 lines
No EOL
526 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
namespace Cosmos.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;
}
}