2024-08-13 07:55:18 +00:00
|
|
|
|
namespace Medusa.Core.Attributes
|
|
|
|
|
{
|
2024-08-13 23:08:00 +00:00
|
|
|
|
[AttributeUsage(AttributeTargets.Class)]
|
|
|
|
|
public class HandlerAttribute(string module, string method) : Attribute
|
2024-08-13 07:55:18 +00:00
|
|
|
|
{
|
2024-08-13 23:08:00 +00:00
|
|
|
|
public readonly string Module = module;
|
|
|
|
|
public readonly string Method = method;
|
2024-08-13 07:55:18 +00:00
|
|
|
|
}
|
|
|
|
|
}
|