9 lines
206 B
C#
Raw Normal View History

2025-04-30 17:22:52 -03:00
namespace phronCare.UIBlazor.Models.Login
2025-01-24 19:17:26 -03:00
{
2025-04-30 17:22:52 -03:00
public class Login
2025-01-24 19:17:26 -03:00
{
public string UserName { get; set; } = string.Empty;
public string Password { get; set; } = string.Empty;
}
}