HttpHandlerAttribute.cs 333 B

123456789101112131415
  1. namespace ET.Server
  2. {
  3. public class HttpHandlerAttribute: BaseAttribute
  4. {
  5. public SceneType SceneType { get; }
  6. public string Path { get; }
  7. public HttpHandlerAttribute(SceneType sceneType, string path)
  8. {
  9. this.SceneType = sceneType;
  10. this.Path = path;
  11. }
  12. }
  13. }