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