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.
Verax_API_EF/Verax_API_EF/API_Model/UserDTO.cs

11 lines
323 B

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; }
}