using System.Net.Http; using System.Threading; using System.Threading.Tasks; namespace ReC.Client.Api { /// /// Provides access to endpoint authentication endpoints. /// public class EndpointAuthApi : BaseCrudApi { /// /// Initializes a new instance of the class. /// /// The HTTP client used for requests. public EndpointAuthApi(HttpClient http) : base(http, "api/EndpointAuth") { } } }