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.
SAE-S2.01_MAUI/Sources/Model/Carte.cs

28 lines
746 B

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Model
{
public class Carte
{
private string prix;
private string description;
private string pouvoir;
private string strategies;
private int note;
private string lienImage;
public Carte(string nom, string description, string pouvoir, string strategies, int note, string lienimage)
{
this.prix = nom;
this.description = description;
this.pouvoir = pouvoir;
this.strategies = strategies;
this.note = note;
this.lienImage = lienimage;
}
}
}