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.
Ohara_MAUI/Sources/Model/Bestiaire.cs

26 lines
671 B

using System;
using System.Collections.Generic;
using System.Linq;
using System.Numerics;
using System.Text;
using System.Threading.Tasks;
namespace Model
{
public class Bestiaire
{
public string Nom { get; set; }
public string Origine { get; set; }
public string Description { get; set; }
public string Caracteristique { get; set; }
public Bestiaire(string nom, string origine, string description, string caracteristique)
{
Nom = nom;
Origine = origine;
Description = description;
Caracteristique = caracteristique;
}
}
}