diff --git a/Logo.png b/Logo.png
new file mode 100644
index 0000000..4f535d5
Binary files /dev/null and b/Logo.png differ
diff --git a/System/README.md b/System/README.md
index d7126f1..2467bc9 100644
--- a/System/README.md
+++ b/System/README.md
@@ -16,7 +16,7 @@ Install-Package FrApp42.System
### Check if device is online
```csharp
-using namespace FrApp42.System.Net;
+using FrApp42.System.Net;
string address = "your-address";
string timeout = 5;
@@ -29,7 +29,7 @@ bool isOnline = online.Check();
### Shutdown through SMB (Windows Only)
```csharp
-using namespace FrApp42.System.Computer.Shutdown;
+using FrApp42.System.Computer.Shutdown;
string hostname = "your-hostname";
@@ -46,7 +46,7 @@ ShutdownResult shutdownResult = await shutdown.Run();
### Wake up a computer (WOL)
```csharp
-using namespace FrApp42.System.Net;
+using FrApp42.System.Net;
string macAddress = "your-mac-address";
diff --git a/System/System.csproj b/System/System.csproj
index ada257e..8b83676 100644
--- a/System/System.csproj
+++ b/System/System.csproj
@@ -7,7 +7,7 @@