tuitio/IdentityServer.Application/Commands/AuthenticateUser.cs

12 lines
308 B
C#
Raw Normal View History

2020-12-24 04:39:59 +02:00
using IdentityServer.PublishedLanguage.Events;
2020-12-20 22:50:01 +02:00
using NDB.Application.DataContracts;
2020-12-20 03:06:43 +02:00
namespace IdentityServer.Application.Commands
{
2020-12-24 04:39:59 +02:00
public class AuthenticateUser : Command<AuthenticateUserResult>
2020-12-20 03:06:43 +02:00
{
public string UserName { get; set; }
public string Password { get; set; }
}
}