forked from sanchezvem/PyroFetes
10 lines
326 B
C#
10 lines
326 B
C#
namespace PyroFetes.DTO.Login.Response;
|
|
|
|
public class GetLoginDto
|
|
{
|
|
public int Id { get; set; }
|
|
public string? Name { get; set; } = string.Empty;
|
|
public string? Email { get; set; } = string.Empty;
|
|
public string? Password { get; set; } = string.Empty;
|
|
public string? Fonction { get; set; } = string.Empty;
|
|
} |