From adc57b1ba97de2c0234321e9d54e34f1f09876df Mon Sep 17 00:00:00 2001 From: Louis GUICHARD-MONTGUERS Date: Sat, 8 Feb 2025 19:29:25 +0100 Subject: [PATCH] =?UTF-8?q?Mise=20=C3=A0=20jour=20de=20'WF-WebAdmin/WF-Web?= =?UTF-8?q?Admin/Converter/QuoteDto.cs'?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../Converter/{QuoteDTO.cs => QuoteDto.cs} | 22 +++++++++---------- 1 file changed, 11 insertions(+), 11 deletions(-) rename WF-WebAdmin/WF-WebAdmin/Converter/{QuoteDTO.cs => QuoteDto.cs} (99%) diff --git a/WF-WebAdmin/WF-WebAdmin/Converter/QuoteDTO.cs b/WF-WebAdmin/WF-WebAdmin/Converter/QuoteDto.cs similarity index 99% rename from WF-WebAdmin/WF-WebAdmin/Converter/QuoteDTO.cs rename to WF-WebAdmin/WF-WebAdmin/Converter/QuoteDto.cs index 26a68a8..fc3e969 100644 --- a/WF-WebAdmin/WF-WebAdmin/Converter/QuoteDTO.cs +++ b/WF-WebAdmin/WF-WebAdmin/Converter/QuoteDto.cs @@ -24,20 +24,20 @@ namespace WF_WebAdmin.Converter public QuoteDTO(int id_quote,string content,int likes,string langue,bool isValide,string? reason,int? id_caracter,string name_charac,int? id_source,string title,DateTime date,int? id_user_verif,string name_user ,int? id_img,string img_path) { this.Id = id_quote; - this.Content = content; + this.Content = content; this.Likes = likes; this.Langue = langue; this.IsValide = isValide; - this.Reason = reason; - this.IdCaracter = id_caracter; - this.NameCharac = name_charac; - this.IdSource = id_source; - this.TitleSrc = title; - this.DateSrc = date; - this.IdUserVerif = id_user_verif; - this.NameUser = name_user; - this.IdImg = id_img; - this.ImgPath =img_path; + this.Reason = reason; + this.IdCaracter = id_caracter; + this.NameCharac = name_charac; + this.IdSource = id_source; + this.TitleSrc = title; + this.DateSrc = date; + this.IdUserVerif = id_user_verif; + this.NameUser = name_user; + this.IdImg = id_img; + this.ImgPath =img_path; } } }