mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-20 21:08:51 +00:00
26 lines
No EOL
428 B
C#
26 lines
No EOL
428 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;
|
|
}
|
|
}
|
|
} |