mirror of
https://gitea.tendokyu.moe/Kayori/Medusa.net.git
synced 2026-09-25 07:48:10 +03:00
10 lines
239 B
C#
10 lines
239 B
C#
namespace Server.Attributes;
|
|
|
|
|
|
[AttributeUsage(AttributeTargets.Class)]
|
|
public class HandlerAttribute(string module, string method) : Attribute
|
|
{
|
|
public readonly string Module = module;
|
|
public readonly string Method = method;
|
|
}
|