7 lines
165 B
C#
7 lines
165 B
C#
|
namespace Contracts.DTO;
|
||
|
|
||
|
public class UserLoginDTO
|
||
|
{
|
||
|
public string Name { get; set; } = string.Empty;
|
||
|
public string Password { get; set; } = string.Empty;
|
||
|
}
|