Medusa-CS/Medusa.Core/Attributes/HandlerAttribute.cs

10 lines
269 B
C#

namespace Medusa.Core.Attributes
{
[AttributeUsage(AttributeTargets.Class)]
public class HandlerAttribute(string module, string method) : Attribute
{
public readonly string Module = module;
public readonly string Method = method;
}
}