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; } } }