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.
29 lines
745 B
29 lines
745 B
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Runtime.Serialization;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Models
|
|
{
|
|
[DataContract]
|
|
public class Ability
|
|
{
|
|
[DataMember]
|
|
public string Name { get; private set; }
|
|
[DataMember]
|
|
public string Image { get; private set; }
|
|
[DataMember]
|
|
public string Description { get; private set; }
|
|
|
|
public Ability(string name,string image,string description)
|
|
{
|
|
// Le constructeur de la classe Ability initialise le nom de l'abilitée.
|
|
Name = name;
|
|
Image= image;
|
|
Description = description;
|
|
}
|
|
}
|
|
}
|