using IdentityServer.PublishedLanguage.Dto; namespace IdentityServer.Application.Commands { public class AuthenticateUser : Command { public string UserName { get; set; } public string Password { get; set; } public AuthenticateUser(string userName, string password) { UserName = userName; Password = password; } } }