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.
28 lines
652 B
28 lines
652 B
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Stim_Model
|
|
{
|
|
internal class Administrateur : User
|
|
{
|
|
public int Permission
|
|
{
|
|
get { return permission; }
|
|
private set
|
|
{
|
|
permission = value;
|
|
}
|
|
}
|
|
private int permission;
|
|
|
|
public Administrateur(string username, string biographie, string email, string password, int perm)
|
|
: base(username, biographie, email, password)
|
|
{
|
|
Permission = perm;
|
|
}
|
|
}
|
|
}
|