namespace Model { public class Personnage { public string Nom { get; set; } public string Epithete { get; set; } public int Age { get; set; } public float Taille { get; set; } public FruitDuDemon Fruit { get; set; } public string Origine { get; set; } public string Equipage { get; set; } public string Biographie { get; set; } public string Citation { get; set; } public Personnage(string nom, string epithete, int age, float taille, FruitDuDemon fruit, string origine, string equipage, string biographie, string citation) { Nom = nom; Epithete = epithete; Age = age; Taille = taille; Fruit = fruit; Origine = origine; Equipage = equipage; Biographie = biographie; Citation = citation; } } }