|
|
|
@ -28,42 +28,6 @@ namespace WF_WebAdmin.Model
|
|
|
|
|
UserProposition = userProposition;
|
|
|
|
|
IsValid = isvalid;
|
|
|
|
|
}
|
|
|
|
|
/*
|
|
|
|
|
public int Id { get; set; }
|
|
|
|
|
public string Content { get; set; }
|
|
|
|
|
public int Likes { get; set; }
|
|
|
|
|
public string Langue { get; set; }
|
|
|
|
|
public bool IsValide { get; set; }
|
|
|
|
|
public string? Reason { get; set; }
|
|
|
|
|
public int IdCaracter { get; set; }
|
|
|
|
|
public int IdSource { get; set; }
|
|
|
|
|
public int? IdUserVerif { get; set; }
|
|
|
|
|
|
|
|
|
|
public Quote(int id, string content, int likes, string langue, bool isValide, string? reason, int idCaracter, int idSource, int idUserVerif)
|
|
|
|
|
{
|
|
|
|
|
Id = id;
|
|
|
|
|
Content = content;
|
|
|
|
|
Likes = likes;
|
|
|
|
|
Langue = langue;
|
|
|
|
|
IsValide = isValide;
|
|
|
|
|
Reason = reason;
|
|
|
|
|
IdCaracter = idCaracter;
|
|
|
|
|
IdSource = idSource;
|
|
|
|
|
IdUserVerif = idUserVerif;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Quote(int id, string content, int likes, string langue, bool isValide, string? reason, int idCaracter, int idSource, int? idUserVerif)
|
|
|
|
|
{
|
|
|
|
|
Id = id;
|
|
|
|
|
Content = content;
|
|
|
|
|
Likes = likes;
|
|
|
|
|
Langue = langue;
|
|
|
|
|
IsValide = isValide;
|
|
|
|
|
Reason = reason;
|
|
|
|
|
IdCaracter = idCaracter;
|
|
|
|
|
IdSource = idSource;
|
|
|
|
|
IdUserVerif = idUserVerif;
|
|
|
|
|
}
|
|
|
|
|
*/
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|