Files
ApiEfCoreLibrary/ApiEfCoreLibrary/DTO/Login/Request/UpdateLoginDto.cs
2025-10-13 15:00:16 +02:00

9 lines
236 B
C#

namespace ApiEfCoreLibrary.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; }
}