Files
PyroFetes-Sujet1/PyroFetes/DTO/Login/Response/GetLoginDto.cs
2025-12-08 12:27:05 +01:00

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