You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
465 B
16 lines
465 B
namespace WF_WebAdmin.Model
|
|
{
|
|
public class Quote
|
|
{
|
|
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; }
|
|
}
|
|
}
|