LANCommander/LANCommander.SDK/Factories/ApiRequestFactory.cs
2025-10-02 20:07:44 -05:00

20 lines
No EOL
515 B
C#

using System;
using System.Net.Http;
using LANCommander.SDK.Abstractions;
using LANCommander.SDK.Helpers;
using LANCommander.SDK.Models;
using LANCommander.SDK.Services;
using Microsoft.Extensions.Options;
namespace LANCommander.SDK.Factories;
public class ApiRequestFactory(
HttpClient httpClient,
ITokenProvider tokenProvider,
ISettingsProvider settingsProvider)
{
public ApiRequestBuilder Create()
{
return new ApiRequestBuilder(httpClient, tokenProvider, settingsProvider);
}
}