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.
24 lines
480 B
24 lines
480 B
/// \file
|
|
/// \brief Définition de la classe Admin.
|
|
/// \author Rémi Lavergne - Yvan Calatayud
|
|
|
|
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 Admin : Utilisateur
|
|
{
|
|
public Admin(string mail, string pseudo, string mdp) : base(mail, pseudo, mdp)
|
|
{
|
|
EstAdmin = true;
|
|
}
|
|
|
|
}
|
|
}
|