From fa79134d021c32ead12860cf31a0ecf137a5b66f Mon Sep 17 00:00:00 2001 From: GHXX Date: Fri, 19 Jul 2024 03:28:56 +0200 Subject: [PATCH] Move file --- SimpleHttpServer/{ => Types}/RequestContext.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename SimpleHttpServer/{ => Types}/RequestContext.cs (99%) 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; }