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.
|
namespace Web_API.Model;
|
|
|
|
public class UserDTO
|
|
{
|
|
public string Pseudo { get; set; }
|
|
public string Mdp { get; set; }
|
|
public string Nom { get; set; }
|
|
public string Prenom { get; set; }
|
|
public string Mail { get; set; }
|
|
public string Role { get; set; }
|
|
} |