tuitio/IdentityServer.Application/Commands/AuthenticateUser.cs

12 lines
288 B
C#
Raw Normal View History

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