From 0ab20905218be1b35f6010455fa39f21a27945e9 Mon Sep 17 00:00:00 2001 From: CyberL1 Date: Sat, 20 Apr 2024 09:33:06 +0200 Subject: [PATCH] Rename to MyMcRealms --- Minecraft-Realms-Emulator.sln => MyMcRealms.sln | 2 +- {Minecraft-Realms-Emulator => MyMcRealms}/.gitignore | 0 .../Attributes/RequireMinecraftCookieAttribute.cs | 0 {Minecraft-Realms-Emulator => MyMcRealms}/Compatibility.cs | 0 .../Controllers/ConfigurationController.cs | 0 .../Controllers/InvitesController.cs | 0 .../Controllers/McoController.cs | 0 .../Controllers/OpsController.cs | 0 .../Controllers/SubscriptionsController.cs | 0 .../Controllers/TrialController.cs | 0 .../Controllers/WorldsController.cs | 0 {Minecraft-Realms-Emulator => MyMcRealms}/Data/DataContext.cs | 0 {Minecraft-Realms-Emulator => MyMcRealms}/Entities/Backup.cs | 0 .../Entities/Configuration.cs | 0 .../Entities/Connection.cs | 0 {Minecraft-Realms-Emulator => MyMcRealms}/Entities/Invite.cs | 0 {Minecraft-Realms-Emulator => MyMcRealms}/Entities/Player.cs | 0 {Minecraft-Realms-Emulator => MyMcRealms}/Entities/Slot.cs | 0 .../Entities/Subscription.cs | 0 {Minecraft-Realms-Emulator => MyMcRealms}/Entities/World.cs | 0 {Minecraft-Realms-Emulator => MyMcRealms}/Helpers/Database.cs | 0 .../Middlewares/MinecraftCookieMiddleware.cs | 0 .../Migrations/20240202175209_Initial.Designer.cs | 0 .../Migrations/20240202175209_Initial.cs | 0 .../Migrations/20240203132410_Subscriptions.Designer.cs | 0 .../Migrations/20240203132410_Subscriptions.cs | 0 .../Migrations/20240211135246_Slots.Designer.cs | 0 .../Migrations/20240211135246_Slots.cs | 0 .../Migrations/20240213104200_Connections.Designer.cs | 0 .../Migrations/20240213104200_Connections.cs | 0 .../Migrations/20240213121346_Subscription_v2.Designer.cs | 0 .../Migrations/20240213121346_Subscription_v2.cs | 0 .../Migrations/20240214154708_Backups.Designer.cs | 0 .../Migrations/20240214154708_Backups.cs | 0 .../Migrations/20240218160304_Connections_Id.Designer.cs | 0 .../Migrations/20240218160304_Connections_Id.cs | 0 .../Migrations/20240220092334_Invites.Designer.cs | 0 .../Migrations/20240220092334_Invites.cs | 0 .../Migrations/20240221131108_Players.Designer.cs | 0 .../Migrations/20240221131108_Players.cs | 0 .../Migrations/20240301214442_Configuration.Designer.cs | 0 .../Migrations/20240301214442_Configuration.cs | 0 ...315231009_Subscriptions_StartDate_Readable_Field.Designer.cs | 0 .../20240315231009_Subscriptions_StartDate_Readable_Field.cs | 0 .../20240317120329_Worlds_Subscription_field.Designer.cs | 0 .../Migrations/20240317120329_Worlds_Subscription_field.cs | 0 .../Migrations/20240414062222_Configuration_Json.Designer.cs | 0 .../Migrations/20240414062222_Configuration_Json.cs | 0 .../Migrations/DataContextModelSnapshot.cs | 0 .../Minecraft-Realms-Emulator.http | 0 .../MyMcRealms.csproj | 0 {Minecraft-Realms-Emulator => MyMcRealms}/Program.cs | 0 .../Properties/launchSettings.json | 0 .../Requests/PlayerRequest.cs | 0 .../Requests/WorldCreateRequest.cs | 0 .../Responses/BackupsResponse.cs | 0 .../Responses/InviteList.cs | 0 .../Responses/MinecraftPlayerInfo.cs | 0 .../Responses/NewsResponse.cs | 0 .../Responses/OpsResponse.cs | 0 .../Responses/ServersResponse.cs | 0 .../Responses/SubscriptionResponse.cs | 0 .../Responses/WorldResponse.cs | 0 .../appsettings.Development.json | 0 {Minecraft-Realms-Emulator => MyMcRealms}/appsettings.json | 0 65 files changed, 1 insertion(+), 1 deletion(-) rename Minecraft-Realms-Emulator.sln => MyMcRealms.sln (84%) rename {Minecraft-Realms-Emulator => MyMcRealms}/.gitignore (100%) rename {Minecraft-Realms-Emulator => MyMcRealms}/Attributes/RequireMinecraftCookieAttribute.cs (100%) rename {Minecraft-Realms-Emulator => MyMcRealms}/Compatibility.cs (100%) rename {Minecraft-Realms-Emulator => MyMcRealms}/Controllers/ConfigurationController.cs (100%) rename {Minecraft-Realms-Emulator => MyMcRealms}/Controllers/InvitesController.cs (100%) rename {Minecraft-Realms-Emulator => MyMcRealms}/Controllers/McoController.cs (100%) rename {Minecraft-Realms-Emulator => MyMcRealms}/Controllers/OpsController.cs (100%) rename {Minecraft-Realms-Emulator => MyMcRealms}/Controllers/SubscriptionsController.cs (100%) rename {Minecraft-Realms-Emulator => MyMcRealms}/Controllers/TrialController.cs (100%) rename {Minecraft-Realms-Emulator => MyMcRealms}/Controllers/WorldsController.cs (100%) rename {Minecraft-Realms-Emulator => MyMcRealms}/Data/DataContext.cs (100%) rename {Minecraft-Realms-Emulator => MyMcRealms}/Entities/Backup.cs (100%) rename {Minecraft-Realms-Emulator => MyMcRealms}/Entities/Configuration.cs (100%) rename {Minecraft-Realms-Emulator => MyMcRealms}/Entities/Connection.cs (100%) rename {Minecraft-Realms-Emulator => MyMcRealms}/Entities/Invite.cs (100%) rename {Minecraft-Realms-Emulator => MyMcRealms}/Entities/Player.cs (100%) rename {Minecraft-Realms-Emulator => MyMcRealms}/Entities/Slot.cs (100%) rename {Minecraft-Realms-Emulator => MyMcRealms}/Entities/Subscription.cs (100%) rename {Minecraft-Realms-Emulator => MyMcRealms}/Entities/World.cs (100%) rename {Minecraft-Realms-Emulator => MyMcRealms}/Helpers/Database.cs (100%) rename {Minecraft-Realms-Emulator => MyMcRealms}/Middlewares/MinecraftCookieMiddleware.cs (100%) rename {Minecraft-Realms-Emulator => MyMcRealms}/Migrations/20240202175209_Initial.Designer.cs (100%) rename {Minecraft-Realms-Emulator => MyMcRealms}/Migrations/20240202175209_Initial.cs (100%) rename {Minecraft-Realms-Emulator => MyMcRealms}/Migrations/20240203132410_Subscriptions.Designer.cs (100%) rename {Minecraft-Realms-Emulator => MyMcRealms}/Migrations/20240203132410_Subscriptions.cs (100%) rename {Minecraft-Realms-Emulator => MyMcRealms}/Migrations/20240211135246_Slots.Designer.cs (100%) rename {Minecraft-Realms-Emulator => MyMcRealms}/Migrations/20240211135246_Slots.cs (100%) rename {Minecraft-Realms-Emulator => MyMcRealms}/Migrations/20240213104200_Connections.Designer.cs (100%) rename {Minecraft-Realms-Emulator => MyMcRealms}/Migrations/20240213104200_Connections.cs (100%) rename {Minecraft-Realms-Emulator => MyMcRealms}/Migrations/20240213121346_Subscription_v2.Designer.cs (100%) rename {Minecraft-Realms-Emulator => MyMcRealms}/Migrations/20240213121346_Subscription_v2.cs (100%) rename {Minecraft-Realms-Emulator => MyMcRealms}/Migrations/20240214154708_Backups.Designer.cs (100%) rename {Minecraft-Realms-Emulator => MyMcRealms}/Migrations/20240214154708_Backups.cs (100%) rename {Minecraft-Realms-Emulator => MyMcRealms}/Migrations/20240218160304_Connections_Id.Designer.cs (100%) rename {Minecraft-Realms-Emulator => MyMcRealms}/Migrations/20240218160304_Connections_Id.cs (100%) rename {Minecraft-Realms-Emulator => MyMcRealms}/Migrations/20240220092334_Invites.Designer.cs (100%) rename {Minecraft-Realms-Emulator => MyMcRealms}/Migrations/20240220092334_Invites.cs (100%) rename {Minecraft-Realms-Emulator => MyMcRealms}/Migrations/20240221131108_Players.Designer.cs (100%) rename {Minecraft-Realms-Emulator => MyMcRealms}/Migrations/20240221131108_Players.cs (100%) rename {Minecraft-Realms-Emulator => MyMcRealms}/Migrations/20240301214442_Configuration.Designer.cs (100%) rename {Minecraft-Realms-Emulator => MyMcRealms}/Migrations/20240301214442_Configuration.cs (100%) rename {Minecraft-Realms-Emulator => MyMcRealms}/Migrations/20240315231009_Subscriptions_StartDate_Readable_Field.Designer.cs (100%) rename {Minecraft-Realms-Emulator => MyMcRealms}/Migrations/20240315231009_Subscriptions_StartDate_Readable_Field.cs (100%) rename {Minecraft-Realms-Emulator => MyMcRealms}/Migrations/20240317120329_Worlds_Subscription_field.Designer.cs (100%) rename {Minecraft-Realms-Emulator => MyMcRealms}/Migrations/20240317120329_Worlds_Subscription_field.cs (100%) rename {Minecraft-Realms-Emulator => MyMcRealms}/Migrations/20240414062222_Configuration_Json.Designer.cs (100%) rename {Minecraft-Realms-Emulator => MyMcRealms}/Migrations/20240414062222_Configuration_Json.cs (100%) rename {Minecraft-Realms-Emulator => MyMcRealms}/Migrations/DataContextModelSnapshot.cs (100%) rename {Minecraft-Realms-Emulator => MyMcRealms}/Minecraft-Realms-Emulator.http (100%) rename Minecraft-Realms-Emulator/Minecraft-Realms-Emulator.csproj => MyMcRealms/MyMcRealms.csproj (100%) rename {Minecraft-Realms-Emulator => MyMcRealms}/Program.cs (100%) rename {Minecraft-Realms-Emulator => MyMcRealms}/Properties/launchSettings.json (100%) rename {Minecraft-Realms-Emulator => MyMcRealms}/Requests/PlayerRequest.cs (100%) rename {Minecraft-Realms-Emulator => MyMcRealms}/Requests/WorldCreateRequest.cs (100%) rename {Minecraft-Realms-Emulator => MyMcRealms}/Responses/BackupsResponse.cs (100%) rename {Minecraft-Realms-Emulator => MyMcRealms}/Responses/InviteList.cs (100%) rename {Minecraft-Realms-Emulator => MyMcRealms}/Responses/MinecraftPlayerInfo.cs (100%) rename {Minecraft-Realms-Emulator => MyMcRealms}/Responses/NewsResponse.cs (100%) rename {Minecraft-Realms-Emulator => MyMcRealms}/Responses/OpsResponse.cs (100%) rename {Minecraft-Realms-Emulator => MyMcRealms}/Responses/ServersResponse.cs (100%) rename {Minecraft-Realms-Emulator => MyMcRealms}/Responses/SubscriptionResponse.cs (100%) rename {Minecraft-Realms-Emulator => MyMcRealms}/Responses/WorldResponse.cs (100%) rename {Minecraft-Realms-Emulator => MyMcRealms}/appsettings.Development.json (100%) rename {Minecraft-Realms-Emulator => MyMcRealms}/appsettings.json (100%) diff --git a/Minecraft-Realms-Emulator.sln b/MyMcRealms.sln similarity index 84% rename from Minecraft-Realms-Emulator.sln rename to MyMcRealms.sln index e229d1e..e9e0361 100644 --- a/Minecraft-Realms-Emulator.sln +++ b/MyMcRealms.sln @@ -3,7 +3,7 @@ Microsoft Visual Studio Solution File, Format Version 12.00 # Visual Studio Version 17 VisualStudioVersion = 17.8.34511.84 MinimumVisualStudioVersion = 10.0.40219.1 -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Minecraft-Realms-Emulator", "Minecraft-Realms-Emulator\Minecraft-Realms-Emulator.csproj", "{A9A21AAF-EF1B-4723-9407-51FD6B831B98}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "MyMcRealms", "MyMcRealms\MyMcRealms.csproj", "{A9A21AAF-EF1B-4723-9407-51FD6B831B98}" EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution diff --git a/Minecraft-Realms-Emulator/.gitignore b/MyMcRealms/.gitignore similarity index 100% rename from Minecraft-Realms-Emulator/.gitignore rename to MyMcRealms/.gitignore diff --git a/Minecraft-Realms-Emulator/Attributes/RequireMinecraftCookieAttribute.cs b/MyMcRealms/Attributes/RequireMinecraftCookieAttribute.cs similarity index 100% rename from Minecraft-Realms-Emulator/Attributes/RequireMinecraftCookieAttribute.cs rename to MyMcRealms/Attributes/RequireMinecraftCookieAttribute.cs diff --git a/Minecraft-Realms-Emulator/Compatibility.cs b/MyMcRealms/Compatibility.cs similarity index 100% rename from Minecraft-Realms-Emulator/Compatibility.cs rename to MyMcRealms/Compatibility.cs diff --git a/Minecraft-Realms-Emulator/Controllers/ConfigurationController.cs b/MyMcRealms/Controllers/ConfigurationController.cs similarity index 100% rename from Minecraft-Realms-Emulator/Controllers/ConfigurationController.cs rename to MyMcRealms/Controllers/ConfigurationController.cs diff --git a/Minecraft-Realms-Emulator/Controllers/InvitesController.cs b/MyMcRealms/Controllers/InvitesController.cs similarity index 100% rename from Minecraft-Realms-Emulator/Controllers/InvitesController.cs rename to MyMcRealms/Controllers/InvitesController.cs diff --git a/Minecraft-Realms-Emulator/Controllers/McoController.cs b/MyMcRealms/Controllers/McoController.cs similarity index 100% rename from Minecraft-Realms-Emulator/Controllers/McoController.cs rename to MyMcRealms/Controllers/McoController.cs diff --git a/Minecraft-Realms-Emulator/Controllers/OpsController.cs b/MyMcRealms/Controllers/OpsController.cs similarity index 100% rename from Minecraft-Realms-Emulator/Controllers/OpsController.cs rename to MyMcRealms/Controllers/OpsController.cs diff --git a/Minecraft-Realms-Emulator/Controllers/SubscriptionsController.cs b/MyMcRealms/Controllers/SubscriptionsController.cs similarity index 100% rename from Minecraft-Realms-Emulator/Controllers/SubscriptionsController.cs rename to MyMcRealms/Controllers/SubscriptionsController.cs diff --git a/Minecraft-Realms-Emulator/Controllers/TrialController.cs b/MyMcRealms/Controllers/TrialController.cs similarity index 100% rename from Minecraft-Realms-Emulator/Controllers/TrialController.cs rename to MyMcRealms/Controllers/TrialController.cs diff --git a/Minecraft-Realms-Emulator/Controllers/WorldsController.cs b/MyMcRealms/Controllers/WorldsController.cs similarity index 100% rename from Minecraft-Realms-Emulator/Controllers/WorldsController.cs rename to MyMcRealms/Controllers/WorldsController.cs diff --git a/Minecraft-Realms-Emulator/Data/DataContext.cs b/MyMcRealms/Data/DataContext.cs similarity index 100% rename from Minecraft-Realms-Emulator/Data/DataContext.cs rename to MyMcRealms/Data/DataContext.cs diff --git a/Minecraft-Realms-Emulator/Entities/Backup.cs b/MyMcRealms/Entities/Backup.cs similarity index 100% rename from Minecraft-Realms-Emulator/Entities/Backup.cs rename to MyMcRealms/Entities/Backup.cs diff --git a/Minecraft-Realms-Emulator/Entities/Configuration.cs b/MyMcRealms/Entities/Configuration.cs similarity index 100% rename from Minecraft-Realms-Emulator/Entities/Configuration.cs rename to MyMcRealms/Entities/Configuration.cs diff --git a/Minecraft-Realms-Emulator/Entities/Connection.cs b/MyMcRealms/Entities/Connection.cs similarity index 100% rename from Minecraft-Realms-Emulator/Entities/Connection.cs rename to MyMcRealms/Entities/Connection.cs diff --git a/Minecraft-Realms-Emulator/Entities/Invite.cs b/MyMcRealms/Entities/Invite.cs similarity index 100% rename from Minecraft-Realms-Emulator/Entities/Invite.cs rename to MyMcRealms/Entities/Invite.cs diff --git a/Minecraft-Realms-Emulator/Entities/Player.cs b/MyMcRealms/Entities/Player.cs similarity index 100% rename from Minecraft-Realms-Emulator/Entities/Player.cs rename to MyMcRealms/Entities/Player.cs diff --git a/Minecraft-Realms-Emulator/Entities/Slot.cs b/MyMcRealms/Entities/Slot.cs similarity index 100% rename from Minecraft-Realms-Emulator/Entities/Slot.cs rename to MyMcRealms/Entities/Slot.cs diff --git a/Minecraft-Realms-Emulator/Entities/Subscription.cs b/MyMcRealms/Entities/Subscription.cs similarity index 100% rename from Minecraft-Realms-Emulator/Entities/Subscription.cs rename to MyMcRealms/Entities/Subscription.cs diff --git a/Minecraft-Realms-Emulator/Entities/World.cs b/MyMcRealms/Entities/World.cs similarity index 100% rename from Minecraft-Realms-Emulator/Entities/World.cs rename to MyMcRealms/Entities/World.cs diff --git a/Minecraft-Realms-Emulator/Helpers/Database.cs b/MyMcRealms/Helpers/Database.cs similarity index 100% rename from Minecraft-Realms-Emulator/Helpers/Database.cs rename to MyMcRealms/Helpers/Database.cs diff --git a/Minecraft-Realms-Emulator/Middlewares/MinecraftCookieMiddleware.cs b/MyMcRealms/Middlewares/MinecraftCookieMiddleware.cs similarity index 100% rename from Minecraft-Realms-Emulator/Middlewares/MinecraftCookieMiddleware.cs rename to MyMcRealms/Middlewares/MinecraftCookieMiddleware.cs diff --git a/Minecraft-Realms-Emulator/Migrations/20240202175209_Initial.Designer.cs b/MyMcRealms/Migrations/20240202175209_Initial.Designer.cs similarity index 100% rename from Minecraft-Realms-Emulator/Migrations/20240202175209_Initial.Designer.cs rename to MyMcRealms/Migrations/20240202175209_Initial.Designer.cs diff --git a/Minecraft-Realms-Emulator/Migrations/20240202175209_Initial.cs b/MyMcRealms/Migrations/20240202175209_Initial.cs similarity index 100% rename from Minecraft-Realms-Emulator/Migrations/20240202175209_Initial.cs rename to MyMcRealms/Migrations/20240202175209_Initial.cs diff --git a/Minecraft-Realms-Emulator/Migrations/20240203132410_Subscriptions.Designer.cs b/MyMcRealms/Migrations/20240203132410_Subscriptions.Designer.cs similarity index 100% rename from Minecraft-Realms-Emulator/Migrations/20240203132410_Subscriptions.Designer.cs rename to MyMcRealms/Migrations/20240203132410_Subscriptions.Designer.cs diff --git a/Minecraft-Realms-Emulator/Migrations/20240203132410_Subscriptions.cs b/MyMcRealms/Migrations/20240203132410_Subscriptions.cs similarity index 100% rename from Minecraft-Realms-Emulator/Migrations/20240203132410_Subscriptions.cs rename to MyMcRealms/Migrations/20240203132410_Subscriptions.cs diff --git a/Minecraft-Realms-Emulator/Migrations/20240211135246_Slots.Designer.cs b/MyMcRealms/Migrations/20240211135246_Slots.Designer.cs similarity index 100% rename from Minecraft-Realms-Emulator/Migrations/20240211135246_Slots.Designer.cs rename to MyMcRealms/Migrations/20240211135246_Slots.Designer.cs diff --git a/Minecraft-Realms-Emulator/Migrations/20240211135246_Slots.cs b/MyMcRealms/Migrations/20240211135246_Slots.cs similarity index 100% rename from Minecraft-Realms-Emulator/Migrations/20240211135246_Slots.cs rename to MyMcRealms/Migrations/20240211135246_Slots.cs diff --git a/Minecraft-Realms-Emulator/Migrations/20240213104200_Connections.Designer.cs b/MyMcRealms/Migrations/20240213104200_Connections.Designer.cs similarity index 100% rename from Minecraft-Realms-Emulator/Migrations/20240213104200_Connections.Designer.cs rename to MyMcRealms/Migrations/20240213104200_Connections.Designer.cs diff --git a/Minecraft-Realms-Emulator/Migrations/20240213104200_Connections.cs b/MyMcRealms/Migrations/20240213104200_Connections.cs similarity index 100% rename from Minecraft-Realms-Emulator/Migrations/20240213104200_Connections.cs rename to MyMcRealms/Migrations/20240213104200_Connections.cs diff --git a/Minecraft-Realms-Emulator/Migrations/20240213121346_Subscription_v2.Designer.cs b/MyMcRealms/Migrations/20240213121346_Subscription_v2.Designer.cs similarity index 100% rename from Minecraft-Realms-Emulator/Migrations/20240213121346_Subscription_v2.Designer.cs rename to MyMcRealms/Migrations/20240213121346_Subscription_v2.Designer.cs diff --git a/Minecraft-Realms-Emulator/Migrations/20240213121346_Subscription_v2.cs b/MyMcRealms/Migrations/20240213121346_Subscription_v2.cs similarity index 100% rename from Minecraft-Realms-Emulator/Migrations/20240213121346_Subscription_v2.cs rename to MyMcRealms/Migrations/20240213121346_Subscription_v2.cs diff --git a/Minecraft-Realms-Emulator/Migrations/20240214154708_Backups.Designer.cs b/MyMcRealms/Migrations/20240214154708_Backups.Designer.cs similarity index 100% rename from Minecraft-Realms-Emulator/Migrations/20240214154708_Backups.Designer.cs rename to MyMcRealms/Migrations/20240214154708_Backups.Designer.cs diff --git a/Minecraft-Realms-Emulator/Migrations/20240214154708_Backups.cs b/MyMcRealms/Migrations/20240214154708_Backups.cs similarity index 100% rename from Minecraft-Realms-Emulator/Migrations/20240214154708_Backups.cs rename to MyMcRealms/Migrations/20240214154708_Backups.cs diff --git a/Minecraft-Realms-Emulator/Migrations/20240218160304_Connections_Id.Designer.cs b/MyMcRealms/Migrations/20240218160304_Connections_Id.Designer.cs similarity index 100% rename from Minecraft-Realms-Emulator/Migrations/20240218160304_Connections_Id.Designer.cs rename to MyMcRealms/Migrations/20240218160304_Connections_Id.Designer.cs diff --git a/Minecraft-Realms-Emulator/Migrations/20240218160304_Connections_Id.cs b/MyMcRealms/Migrations/20240218160304_Connections_Id.cs similarity index 100% rename from Minecraft-Realms-Emulator/Migrations/20240218160304_Connections_Id.cs rename to MyMcRealms/Migrations/20240218160304_Connections_Id.cs diff --git a/Minecraft-Realms-Emulator/Migrations/20240220092334_Invites.Designer.cs b/MyMcRealms/Migrations/20240220092334_Invites.Designer.cs similarity index 100% rename from Minecraft-Realms-Emulator/Migrations/20240220092334_Invites.Designer.cs rename to MyMcRealms/Migrations/20240220092334_Invites.Designer.cs diff --git a/Minecraft-Realms-Emulator/Migrations/20240220092334_Invites.cs b/MyMcRealms/Migrations/20240220092334_Invites.cs similarity index 100% rename from Minecraft-Realms-Emulator/Migrations/20240220092334_Invites.cs rename to MyMcRealms/Migrations/20240220092334_Invites.cs diff --git a/Minecraft-Realms-Emulator/Migrations/20240221131108_Players.Designer.cs b/MyMcRealms/Migrations/20240221131108_Players.Designer.cs similarity index 100% rename from Minecraft-Realms-Emulator/Migrations/20240221131108_Players.Designer.cs rename to MyMcRealms/Migrations/20240221131108_Players.Designer.cs diff --git a/Minecraft-Realms-Emulator/Migrations/20240221131108_Players.cs b/MyMcRealms/Migrations/20240221131108_Players.cs similarity index 100% rename from Minecraft-Realms-Emulator/Migrations/20240221131108_Players.cs rename to MyMcRealms/Migrations/20240221131108_Players.cs diff --git a/Minecraft-Realms-Emulator/Migrations/20240301214442_Configuration.Designer.cs b/MyMcRealms/Migrations/20240301214442_Configuration.Designer.cs similarity index 100% rename from Minecraft-Realms-Emulator/Migrations/20240301214442_Configuration.Designer.cs rename to MyMcRealms/Migrations/20240301214442_Configuration.Designer.cs diff --git a/Minecraft-Realms-Emulator/Migrations/20240301214442_Configuration.cs b/MyMcRealms/Migrations/20240301214442_Configuration.cs similarity index 100% rename from Minecraft-Realms-Emulator/Migrations/20240301214442_Configuration.cs rename to MyMcRealms/Migrations/20240301214442_Configuration.cs diff --git a/Minecraft-Realms-Emulator/Migrations/20240315231009_Subscriptions_StartDate_Readable_Field.Designer.cs b/MyMcRealms/Migrations/20240315231009_Subscriptions_StartDate_Readable_Field.Designer.cs similarity index 100% rename from Minecraft-Realms-Emulator/Migrations/20240315231009_Subscriptions_StartDate_Readable_Field.Designer.cs rename to MyMcRealms/Migrations/20240315231009_Subscriptions_StartDate_Readable_Field.Designer.cs diff --git a/Minecraft-Realms-Emulator/Migrations/20240315231009_Subscriptions_StartDate_Readable_Field.cs b/MyMcRealms/Migrations/20240315231009_Subscriptions_StartDate_Readable_Field.cs similarity index 100% rename from Minecraft-Realms-Emulator/Migrations/20240315231009_Subscriptions_StartDate_Readable_Field.cs rename to MyMcRealms/Migrations/20240315231009_Subscriptions_StartDate_Readable_Field.cs diff --git a/Minecraft-Realms-Emulator/Migrations/20240317120329_Worlds_Subscription_field.Designer.cs b/MyMcRealms/Migrations/20240317120329_Worlds_Subscription_field.Designer.cs similarity index 100% rename from Minecraft-Realms-Emulator/Migrations/20240317120329_Worlds_Subscription_field.Designer.cs rename to MyMcRealms/Migrations/20240317120329_Worlds_Subscription_field.Designer.cs diff --git a/Minecraft-Realms-Emulator/Migrations/20240317120329_Worlds_Subscription_field.cs b/MyMcRealms/Migrations/20240317120329_Worlds_Subscription_field.cs similarity index 100% rename from Minecraft-Realms-Emulator/Migrations/20240317120329_Worlds_Subscription_field.cs rename to MyMcRealms/Migrations/20240317120329_Worlds_Subscription_field.cs diff --git a/Minecraft-Realms-Emulator/Migrations/20240414062222_Configuration_Json.Designer.cs b/MyMcRealms/Migrations/20240414062222_Configuration_Json.Designer.cs similarity index 100% rename from Minecraft-Realms-Emulator/Migrations/20240414062222_Configuration_Json.Designer.cs rename to MyMcRealms/Migrations/20240414062222_Configuration_Json.Designer.cs diff --git a/Minecraft-Realms-Emulator/Migrations/20240414062222_Configuration_Json.cs b/MyMcRealms/Migrations/20240414062222_Configuration_Json.cs similarity index 100% rename from Minecraft-Realms-Emulator/Migrations/20240414062222_Configuration_Json.cs rename to MyMcRealms/Migrations/20240414062222_Configuration_Json.cs diff --git a/Minecraft-Realms-Emulator/Migrations/DataContextModelSnapshot.cs b/MyMcRealms/Migrations/DataContextModelSnapshot.cs similarity index 100% rename from Minecraft-Realms-Emulator/Migrations/DataContextModelSnapshot.cs rename to MyMcRealms/Migrations/DataContextModelSnapshot.cs diff --git a/Minecraft-Realms-Emulator/Minecraft-Realms-Emulator.http b/MyMcRealms/Minecraft-Realms-Emulator.http similarity index 100% rename from Minecraft-Realms-Emulator/Minecraft-Realms-Emulator.http rename to MyMcRealms/Minecraft-Realms-Emulator.http diff --git a/Minecraft-Realms-Emulator/Minecraft-Realms-Emulator.csproj b/MyMcRealms/MyMcRealms.csproj similarity index 100% rename from Minecraft-Realms-Emulator/Minecraft-Realms-Emulator.csproj rename to MyMcRealms/MyMcRealms.csproj diff --git a/Minecraft-Realms-Emulator/Program.cs b/MyMcRealms/Program.cs similarity index 100% rename from Minecraft-Realms-Emulator/Program.cs rename to MyMcRealms/Program.cs diff --git a/Minecraft-Realms-Emulator/Properties/launchSettings.json b/MyMcRealms/Properties/launchSettings.json similarity index 100% rename from Minecraft-Realms-Emulator/Properties/launchSettings.json rename to MyMcRealms/Properties/launchSettings.json diff --git a/Minecraft-Realms-Emulator/Requests/PlayerRequest.cs b/MyMcRealms/Requests/PlayerRequest.cs similarity index 100% rename from Minecraft-Realms-Emulator/Requests/PlayerRequest.cs rename to MyMcRealms/Requests/PlayerRequest.cs diff --git a/Minecraft-Realms-Emulator/Requests/WorldCreateRequest.cs b/MyMcRealms/Requests/WorldCreateRequest.cs similarity index 100% rename from Minecraft-Realms-Emulator/Requests/WorldCreateRequest.cs rename to MyMcRealms/Requests/WorldCreateRequest.cs diff --git a/Minecraft-Realms-Emulator/Responses/BackupsResponse.cs b/MyMcRealms/Responses/BackupsResponse.cs similarity index 100% rename from Minecraft-Realms-Emulator/Responses/BackupsResponse.cs rename to MyMcRealms/Responses/BackupsResponse.cs diff --git a/Minecraft-Realms-Emulator/Responses/InviteList.cs b/MyMcRealms/Responses/InviteList.cs similarity index 100% rename from Minecraft-Realms-Emulator/Responses/InviteList.cs rename to MyMcRealms/Responses/InviteList.cs diff --git a/Minecraft-Realms-Emulator/Responses/MinecraftPlayerInfo.cs b/MyMcRealms/Responses/MinecraftPlayerInfo.cs similarity index 100% rename from Minecraft-Realms-Emulator/Responses/MinecraftPlayerInfo.cs rename to MyMcRealms/Responses/MinecraftPlayerInfo.cs diff --git a/Minecraft-Realms-Emulator/Responses/NewsResponse.cs b/MyMcRealms/Responses/NewsResponse.cs similarity index 100% rename from Minecraft-Realms-Emulator/Responses/NewsResponse.cs rename to MyMcRealms/Responses/NewsResponse.cs diff --git a/Minecraft-Realms-Emulator/Responses/OpsResponse.cs b/MyMcRealms/Responses/OpsResponse.cs similarity index 100% rename from Minecraft-Realms-Emulator/Responses/OpsResponse.cs rename to MyMcRealms/Responses/OpsResponse.cs diff --git a/Minecraft-Realms-Emulator/Responses/ServersResponse.cs b/MyMcRealms/Responses/ServersResponse.cs similarity index 100% rename from Minecraft-Realms-Emulator/Responses/ServersResponse.cs rename to MyMcRealms/Responses/ServersResponse.cs diff --git a/Minecraft-Realms-Emulator/Responses/SubscriptionResponse.cs b/MyMcRealms/Responses/SubscriptionResponse.cs similarity index 100% rename from Minecraft-Realms-Emulator/Responses/SubscriptionResponse.cs rename to MyMcRealms/Responses/SubscriptionResponse.cs diff --git a/Minecraft-Realms-Emulator/Responses/WorldResponse.cs b/MyMcRealms/Responses/WorldResponse.cs similarity index 100% rename from Minecraft-Realms-Emulator/Responses/WorldResponse.cs rename to MyMcRealms/Responses/WorldResponse.cs diff --git a/Minecraft-Realms-Emulator/appsettings.Development.json b/MyMcRealms/appsettings.Development.json similarity index 100% rename from Minecraft-Realms-Emulator/appsettings.Development.json rename to MyMcRealms/appsettings.Development.json diff --git a/Minecraft-Realms-Emulator/appsettings.json b/MyMcRealms/appsettings.json similarity index 100% rename from Minecraft-Realms-Emulator/appsettings.json rename to MyMcRealms/appsettings.json