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