9 lines
163 B
C#
9 lines
163 B
C#
namespace Shared.DTOs
|
|
{
|
|
public class Authentication
|
|
{
|
|
public string Username { get; set; }
|
|
public string Password { get; set; }
|
|
}
|
|
}
|