TH1/Unity/Assets/Scripts/Model/Server/Module/Http/HttpHandlerAttribute.cs
2025-07-17 18:26:28 +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;
}
}
}