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.
33 lines
922 B
33 lines
922 B
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Numerics;
|
|
using System.Runtime.Serialization;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using System.Xml.Linq;
|
|
|
|
namespace Model
|
|
{
|
|
[DataContract(Name = "bestiaire")]
|
|
public class Bestiaire : ObjetOhara
|
|
{
|
|
[DataMember(Name = "origine")]
|
|
public string Origine { get; set; }
|
|
[DataMember(Name = "description")]
|
|
public string Description { get; set; }
|
|
[DataMember(Name = "caracteristique")]
|
|
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;
|
|
}
|
|
|
|
|
|
}
|
|
}
|