HttpHandlerAttribute.cs 321 B

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