Cosmos/source/Cosmos.Kernel.Boot.Glue/GlueMethodAttribute.cs
2007-11-13 10:22:39 +00:00

11 lines
241 B
C#

using System;
namespace Cosmos.Kernel.Boot.Glue {
[AttributeUsage(AttributeTargets.Method, AllowMultiple=true)]
public class GlueMethodAttribute: Attribute {
public GlueMethodTypeEnum MethodType {
get;
set;
}
}
}