Files
PyroFetes-Sujet1/PyroFetes/DTO/Login/Request/UpdateLoginDto.cs

9 lines
232 B
C#

namespace PyroFetes.DTO.Login.Request;
public class UpdateLoginDto
{
public int Id { get; set; }
public string? Username { get; set; }
public string? FullName { get; set; }
public string? Password { get; set; }
}