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.
Ohara_MAUI/Sources/Model/Personnage.cs

31 lines
971 B

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