Leandro Hernan Rojas b7c01e3a50
All checks were successful
CI/CD Pipeline / Build and Deploy with Docker Compose (push) Successful in 5m44s
Add Update and Normalization UI
2025-04-30 17:22:52 -03:00

9 lines
206 B
C#

namespace phronCare.UIBlazor.Models.Login
{
public class Login
{
public string UserName { get; set; } = string.Empty;
public string Password { get; set; } = string.Empty;
}
}