HttpHandlerAttribute.cs 274 B

1234567891011121314151617
  1. using System;
  2. namespace ETModel
  3. {
  4. public class HttpHandlerAttribute : Attribute
  5. {
  6. public AppType AppType { get; }
  7. public string Path { get; }
  8. public HttpHandlerAttribute(AppType appType, string path)
  9. {
  10. this.AppType = appType;
  11. this.Path = path;
  12. }
  13. }
  14. }