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

28 lines
698 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 : ObjetOhara
{
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,string image = "baseimage.png") : base(nom, image)
{
Origine = origine;
Description = description;
Caracteristique = caracteristique;
}
}
}