From ba3ebb4dc80f7c176957be5ee6af27da501b78b3 Mon Sep 17 00:00:00 2001 From: daroldju <jules.darold@etu.utc.fr> Date: Sun, 13 Nov 2022 18:00:01 +0100 Subject: [PATCH] fixed classname LigthUser to LightUser --- vs/LO23/Shared/Shared.csproj | 2 +- vs/LO23/Shared/data/{LigthUser.cs => LightUser.cs} | 4 ++-- vs/LO23/Shared/data/User.cs | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) rename vs/LO23/Shared/data/{LigthUser.cs => LightUser.cs} (86%) diff --git a/vs/LO23/Shared/Shared.csproj b/vs/LO23/Shared/Shared.csproj index 1c3da98..9288628 100644 --- a/vs/LO23/Shared/Shared.csproj +++ b/vs/LO23/Shared/Shared.csproj @@ -45,7 +45,7 @@ <Compile Include="data\LightGame.cs" /> <Compile Include="data\Round.cs" /> <Compile Include="data\GameAction.cs" /> - <Compile Include="data\LigthUser.cs" /> + <Compile Include="data\LightUser.cs" /> <Compile Include="data\Phase.cs" /> <Compile Include="data\Card.cs" /> <Compile Include="data\ChatMessage.cs" /> diff --git a/vs/LO23/Shared/data/LigthUser.cs b/vs/LO23/Shared/data/LightUser.cs similarity index 86% rename from vs/LO23/Shared/data/LigthUser.cs rename to vs/LO23/Shared/data/LightUser.cs index bb3a44f..ee3a172 100644 --- a/vs/LO23/Shared/data/LigthUser.cs +++ b/vs/LO23/Shared/data/LightUser.cs @@ -7,14 +7,14 @@ using System.Threading.Tasks; namespace Shared.data { - public class LigthUser + public class LightUser { public int id; public string userName;// userName et login c'est la même chose public string image; - public LigthUser(int idt = 1, string userNamet = "usernametest", string imaget = "imagetest") + public LightUser(int idt = 1, string userNamet = "usernametest", string imaget = "imagetest") { if (idt == 1) { id = idt; } else diff --git a/vs/LO23/Shared/data/User.cs b/vs/LO23/Shared/data/User.cs index aeb1517..88ed88f 100644 --- a/vs/LO23/Shared/data/User.cs +++ b/vs/LO23/Shared/data/User.cs @@ -7,7 +7,7 @@ using Shared.data; namespace Shared.data { - public class User : LigthUser + public class User : LightUser { public string password; -- GitLab