8 lines
175 B
C#
8 lines
175 B
C#
|
|
namespace PruebaGentle.Core.DTOs;
|
||
|
|
|
||
|
|
public class LoginDto
|
||
|
|
{
|
||
|
|
public string Username { get; set; } = string.Empty;
|
||
|
|
public string Password { get; set; } = string.Empty;
|
||
|
|
}
|