using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using SimpleHttpServer.Login; namespace SimpleHttpServerTest.SimpleTestServer; internal class LdAuthorizer { private readonly LoginProvider lprov; internal LdAuthorizer(LoginProvider lprov) { this.lprov = lprov; } }