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.
34 lines
1006 B
34 lines
1006 B
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Model
|
|
{
|
|
public class Ile
|
|
{
|
|
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 string Description { get; set; }
|
|
public string Geographie { get; set; }
|
|
public string? Image { get; set; }
|
|
|
|
|
|
public Ile(string nom, string nomRomanise, string region, int premierChap, int premierEp, string description, string geographie, string image)
|
|
{
|
|
Nom = nom;
|
|
NomRomanise = nomRomanise;
|
|
Region = region;
|
|
PremierChap = premierChap;
|
|
PremierEp = premierEp;
|
|
Description = description;
|
|
Geographie = geographie;
|
|
Image = image;
|
|
}
|
|
}
|
|
}
|