mirror of
https://github.com/danbulant/Cosmos
synced 2026-06-12 11:11:45 +00:00
11 lines
241 B
C#
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;
|
|
}
|
|
}
|
|
}
|