diff --git a/SimpleHttpServer/RequestContext.cs b/SimpleHttpServer/Types/RequestContext.cs similarity index 99% rename from SimpleHttpServer/RequestContext.cs rename to SimpleHttpServer/Types/RequestContext.cs index 02fa124..fb4c0a6 100644 --- a/SimpleHttpServer/RequestContext.cs +++ b/SimpleHttpServer/Types/RequestContext.cs @@ -1,7 +1,7 @@ using System.Collections.ObjectModel; using System.Net; -namespace SimpleHttpServer; +namespace SimpleHttpServer.Types; public class RequestContext : IDisposable { public HttpListenerContext ListenerContext { get; }