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.
36 lines
1.2 KiB
36 lines
1.2 KiB
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Model
|
|
{
|
|
public class Equipage
|
|
{
|
|
public string Nom { get; set; }
|
|
public string NomRomanise { get; set; }
|
|
|
|
public string Region { get; set; }
|
|
public int PremierChap { get; set; }
|
|
public int PremierEp { get; set; }
|
|
public bool Statut { 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, string description, Personnage capitaine)
|
|
{
|
|
Nom = nom;
|
|
NomRomanise = nomRomanise;
|
|
Region = region;
|
|
PremierChap = premierChap;
|
|
PremierEp = premierEp;
|
|
Statut = statut;
|
|
Description = description;
|
|
Capitaine = capitaine;
|
|
}
|
|
}
|
|
}
|