mirror of
https://dev.azure.com/tstanciu94/Tuitio/_git/Tuitio
synced 2025-03-28 23:52:20 +02:00
17 lines
404 B
C#
17 lines
404 B
C#
using IdentityServer.PublishedLanguage.Dto;
|
|
|
|
namespace IdentityServer.Application.Commands
|
|
{
|
|
public class AuthenticateUser : Command<Token>
|
|
{
|
|
public string UserName { get; set; }
|
|
public string Password { get; set; }
|
|
|
|
public AuthenticateUser(string userName, string password)
|
|
{
|
|
UserName = userName;
|
|
Password = password;
|
|
}
|
|
}
|
|
}
|