|
|
|
@ -15,12 +15,12 @@ namespace Model
|
|
|
|
|
public int PremierChap { get; set; }
|
|
|
|
|
public int PremierEp { get; set; }
|
|
|
|
|
public bool Statut { get; set; }
|
|
|
|
|
public string? Description { get; set; }
|
|
|
|
|
public string Description { get; set; }
|
|
|
|
|
public Personnage Capitaine { get; set; }
|
|
|
|
|
public List<Personnage> Membre { get; set; } = new List<Personnage>();
|
|
|
|
|
public List<Equipage> Allie { get; set; } = new List<Equipage>();
|
|
|
|
|
|
|
|
|
|
public Equipage(string nom, string nomRomanise, string region, int premierChap, int premierEp, bool statut,Personnage capitaine)
|
|
|
|
|
public Equipage(string nom, string nomRomanise, string region, int premierChap, int premierEp, bool statut, string description, Personnage capitaine)
|
|
|
|
|
{
|
|
|
|
|
Nom = nom;
|
|
|
|
|
NomRomanise = nomRomanise;
|
|
|
|
@ -28,6 +28,7 @@ namespace Model
|
|
|
|
|
PremierChap = premierChap;
|
|
|
|
|
PremierEp = premierEp;
|
|
|
|
|
Statut = statut;
|
|
|
|
|
Description = description;
|
|
|
|
|
Capitaine = capitaine;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|