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.
22 lines
707 B
22 lines
707 B
namespace BookApp.Model
|
|
{
|
|
public class Book
|
|
{
|
|
public string Name { get; set; }
|
|
public string ImageBook { get; set; }
|
|
public Auteur Auteur { get; set; }
|
|
public Star Note { get; set; }
|
|
public StatutDeLecture Statut { get; set; }
|
|
public bool Favori { get; set; }
|
|
public bool Next { get; set; }
|
|
public bool Pret { get; set; }
|
|
public string MaisonEdit { get; set; }
|
|
public string Resumer { get; set; }
|
|
public int NbPage { get; set; }
|
|
public string Langue { get; set; }
|
|
public string ISBN { get; set; }
|
|
public string dateAjout { get; set; }
|
|
public string Link { get; set; }
|
|
}
|
|
}
|