forked from sanchezvem/PyroFetes
11 lines
298 B
C#
11 lines
298 B
C#
namespace PyroFetes.DTO.User.Response;
|
|
|
|
public class GetUserDto
|
|
{
|
|
public int Id { get; set; }
|
|
public string? Name { get; set; }
|
|
public string? Password { get; set; }
|
|
public string? Salt { get; set; }
|
|
public string? Fonction { get; set; }
|
|
public string? Email { get; set; }
|
|
} |