diff --git a/Sources/Model/Camp.cs b/Sources/Model/Camp.cs new file mode 100644 index 0000000..b84ea25 --- /dev/null +++ b/Sources/Model/Camp.cs @@ -0,0 +1,23 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace Model +{ + public class Camp + { + public string Nom { get; set; } + public string Description { get; set; } + public string LienImage { get; set; } + public List Cartes { get; set; } + public Camp(string Nom, string Description, string LienImage) + { + this.Nom = Nom; + this.Description = Description; + this.LienImage = LienImage; + this.Cartes = new List(); + } + } +}