Files
TEngine/Assets/GameScripts/DotNet/Model/Server/Module/Http/HttpHandlerAttribute.cs
ALEXTANG 336d4b2eb9 [+] 接入ET8服务端
[+] 接入ET8服务端
2023-07-13 12:23:48 +08:00

15 lines
333 B
C#

namespace ET.Server
{
public class HttpHandlerAttribute: BaseAttribute
{
public SceneType SceneType { get; }
public string Path { get; }
public HttpHandlerAttribute(SceneType sceneType, string path)
{
this.SceneType = sceneType;
this.Path = path;
}
}
}