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