mirror of
https://github.com/Alex-Rachel/TEngine.git
synced 2025-08-14 16:51:28 +00:00
15 lines
333 B
C#
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;
|
|
}
|
|
}
|
|
} |