This commit is contained in:
Kei-Luna
2026-04-22 05:31:08 +09:00
parent fe3c871992
commit 2a961704a8
6 changed files with 89 additions and 1 deletions

View File

@@ -0,0 +1,7 @@
namespace MikuSB.GameServer.Server.CallGS;
[AttributeUsage(AttributeTargets.Class)]
public class CallGSApiAttribute(string api) : Attribute
{
public string Api { get; } = api;
}